10 lines
209 B
Ruby
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
|