Files
doable/db/migrate/20251027091014_create_todos.rb
Tarek Belkahia 6776729eab
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
CI / system-test (push) Has been cancelled
Scaffold Todo
2025-10-27 10:18:59 +01:00

11 lines
178 B
Ruby

class CreateTodos < ActiveRecord::Migration[8.1]
def change
create_table :todos do |t|
t.string :name
t.text :description
t.timestamps
end
end
end