about summary refs log tree commit diff
path: root/db/migrate/20161221152630_add_hidden_to_stream_entries.rb
blob: 0d2def7f871fb97c10436e0db4b9531ffb09dabb (plain) (blame)
1
2
3
4
5
class AddHiddenToStreamEntries < ActiveRecord::Migration[5.0]
  def change
    add_column :stream_entries, :hidden, :boolean, null: false, default: false
  end
end