discourse/db/migrate/20140620184031_add_hidden_a...

6 lines
125 B
Ruby
Raw Normal View History

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