first commit

This commit is contained in:
2026-08-08 20:03:22 -05:00
commit 3eb8a065ac
55 changed files with 2687 additions and 0 deletions
@@ -0,0 +1,9 @@
class CreateTodos < ActiveRecord::Migration[8.0]
def change
create_table :todos do |t|
t.string :title, null: false
t.boolean :completed, null: false, default: false
t.timestamps
end
end
end