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/20211112210223_create_distr...

12 lines
227 B

class CreateDistrictForNewDashboard < ActiveRecord::Migration[6.1]
def change
create_table :districts do |t|
t.string :name
t.string :slug
t.integer :qualtrics_code
t.timestamps
end
end
end