Retrospring/db/migrate/20220614141439_create_anony...

12 lines
310 B
Ruby

class CreateAnonymousBlocks < ActiveRecord::Migration[6.1]
def change
create_table :anonymous_blocks do |t|
t.references :user, null: false, foreign_key: true
t.string :identifier, index: true
t.references :question, null: false, foreign_key: true
t.timestamps
end
end
end