Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160310185910_add_external_flag_to_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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