about summary refs log tree commit diff
path: root/db/migrate/20200215014558_add_hidden_to_statuses.rb
blob: 886a2f7c4a13eb93aac4547ddf262f1e187ffe98 (plain) (blame)
1
2
3
4
5
class AddHiddenToStatuses < ActiveRecord::Migration[5.2]
  def change
    add_column :statuses, :hidden, :boolean
  end
end