FEATURE: automatically rebake out-of-date posts

This commit is contained in:
Sam
2014-05-28 12:30:43 +10:00
parent 2791852bd8
commit f6753d3d46
5 changed files with 75 additions and 30 deletions

View File

@@ -0,0 +1,5 @@
class AddBakedAtToPosts < ActiveRecord::Migration
def change
add_column :posts, :baked_at, :datetime
end
end