This commit is contained in:
2026-06-12 15:40:12 -04:00
commit 521653e5de
53 changed files with 8635 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# encoding: utf-8
class Post < ActiveRecord::Base
# attr_accessible :title, :body
# validates :title, :presence => true
# validates :body, :presence => true
# # has_many :somethings
# # belongs_to :someotherthing
# scope :published, -> { order("created_at DESC") }
end