debian-mirror-gitlab/db/migrate/20160310185910_add_external_flag_to_users.rb
2018-12-23 12:14:25 +05:30

6 lines
164 B
Ruby

# rubocop:disable all
class AddExternalFlagToUsers < ActiveRecord::Migration[4.2]
def change
add_column :users, :external, :boolean, default: false
end
end