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.
sqm-dashboards/db/migrate/20211027171031_create_admin...

13 lines
316 B

class CreateAdminDataItem < ActiveRecord::Migration[6.1]
def change
create_table :admin_data_items do |t|
t.integer :measure_id, null: false
t.string :admin_data_item_id, null: false
t.string :description
t.timestamps
end
add_foreign_key :admin_data_items, :measures
end
end