about summary refs log tree commit diff
path: root/db/migrate/20200110202317_add_media_only_mode.rb
blob: 93934623acce60e50c303ba4ae0dc510b6e60865 (plain) (blame)
1
2
3
4
5
class AddMediaOnlyMode < ActiveRecord::Migration[5.2]
  def change
    safety_assured { add_column :users, :media_only, :boolean, null: false, default: false }
  end
end