russian-book-story/db/migrate/20260316000001_create_todos.rb
2026-03-30 13:18:39 +02:00

11 lines
222 B
Ruby

class CreateTodos < ActiveRecord::Migration[8.1]
def change
create_table :todos do |t|
t.string :title, null: false
t.boolean :completed, null: false, default: false
t.timestamps
end
end
end