summaryrefslogtreecommitdiff
path: root/db/migrate/20160310185910_add_external_flag_to_users.rb
blob: 768bbe4cd42e7b002667ea9413b5103d65f45b1e (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddExternalFlagToUsers < ActiveRecord::Migration[4.2]
  def change
    add_column :users, :external, :boolean, default: false
  end
end