discourse/db/migrate/20120625162318_add_deleted_at_to_posts.rb

6 lines
126 B
Ruby
Raw Normal View History

class AddDeletedAtToPosts < ActiveRecord::Migration[4.2]
2013-02-06 03:16:51 +08:00
def change
add_column :posts, :deleted_at, :datetime
end
end