entrance-exam/db/migrate/20250426173422_create_sections.rb

10 lines
209 B
Ruby

class CreateSections < ActiveRecord::Migration[8.0]
def change
create_table :sections do |t|
t.text :title, null: false
t.text :description, null: false
t.timestamps
end
end
end