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: 54937f1eb711f974da2a85f1ea064c46597f8c23 (plain)
1
2
3
4
5
class AddExternalFlagToUsers < ActiveRecord::Migration
  def change
    add_column :users, :external, :boolean, default: false
  end
end