mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
10 lines
199 B
Ruby
10 lines
199 B
Ruby
class CreateParents < ActiveRecord::Migration[7.1]
|
|
def change
|
|
create_table :parents do |t|
|
|
t.string :response_id
|
|
t.integer :number_of_children
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|