discourse/db/migrate/20140620184031_add_hidden_at_to_posts.rb

6 lines
120 B
Ruby
Raw Normal View History

2014-06-20 15:03:02 -04:00
class AddHiddenAtToPosts < ActiveRecord::Migration
def change
add_column :posts, :hidden_at, :timestamp
end
end