1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00
discourse/db/migrate/20140620184031_add_hidden_at_to_posts.rb
2014-06-20 15:03:23 -04:00

6 lines
120 B
Ruby

class AddHiddenAtToPosts < ActiveRecord::Migration
def change
add_column :posts, :hidden_at, :timestamp
end
end