discourse/db/migrate/20140620184031_add_hidden_a...

8 lines
156 B
Ruby

# frozen_string_literal: true
class AddHiddenAtToPosts < ActiveRecord::Migration[4.2]
def change
add_column :posts, :hidden_at, :timestamp
end
end