first commit

This commit is contained in:
2026-08-08 21:14:10 -05:00
commit e1600da8b1
55 changed files with 2687 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
class ApplicationRecord < ActiveRecord::Base
primary_abstract_class
end
+3
View File
@@ -0,0 +1,3 @@
class Todo < ApplicationRecord
validates :title, presence: true, length: { maximum: 255 }
end