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/20241031190531_create_paren...

11 lines
199 B

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