entrance-exam/db/migrate/20250426173508_create_questions.rb

11 lines
266 B
Ruby

class CreateQuestions < ActiveRecord::Migration[8.0]
def change
create_table :questions do |t|
t.references :section, null: false, foreign_key: true
t.text :text, null: false
t.integer :type, null: false
t.timestamps
end
end
end