You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
642 B
18 lines
642 B
3 years ago
|
class AddAboutThisLogReadableColumns < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
change_table :case_logs, bulk: true do |t|
|
||
|
t.column :gdpr_acceptance, :string
|
||
|
t.column :gdpr_declined, :string
|
||
|
t.column :property_owner_organisation, :string
|
||
|
t.column :property_manager_organisation, :string
|
||
|
t.column :sale_or_letting, :string
|
||
|
t.column :tenant_same_property_renewal, :string
|
||
|
t.column :rent_type, :string
|
||
|
t.column :intermediate_rent_product_name, :string
|
||
|
t.column :needs_type, :string
|
||
|
t.column :sale_completion_date, :string
|
||
|
t.column :purchaser_code, :string
|
||
|
end
|
||
|
end
|
||
|
end
|