mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 14:31:25 +00:00
* Add backend for property account details * Rubocop updates * Add property form with details * Revert "Rubocop updates" This reverts commit 05b0b8f3a4eb8f444997b9bef18ffc972a8be69e. * Bump brakeman to latest version * Add overview section to property view * Lint fixes
8 lines
230 B
Ruby
8 lines
230 B
Ruby
class AddPropertyAttributes < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_column :properties, :year_built, :integer
|
|
add_column :properties, :area_value, :integer
|
|
add_column :properties, :area_unit, :string
|
|
end
|
|
end
|