sqm-dashboards/db/migrate/20241031190531_create_parents.rb
2024-11-03 12:47:25 -08:00

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