Submit social housing lettings and sales data (CORE)
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.
 
 
 
 

13 lines
432 B

class CreateDownloadRecord < ActiveRecord::Migration[7.2]
def change
create_table :download_records do |t|
t.integer :download_type, null: false
t.string :download_filters, null: false
t.references :user, null: false, foreign_key: true
t.references :user_organisation, null: false, foreign_key: { to_table: :organisations }
t.integer :user_role, null: false
t.timestamps
end
end
end