mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 15:38:21 -07:00
10 lines
195 B
Ruby
10 lines
195 B
Ruby
class CreateGenders < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :genders do |t|
|
|
t.integer :qualtrics_code
|
|
t.string :designation
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|