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