mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08: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
|