debian-mirror-gitlab/db/migrate/20161017091941_add_authorized_projects_populated_to_users.rb
2017-08-17 22:00:37 +05:30

10 lines
223 B
Ruby

class AddAuthorizedProjectsPopulatedToUsers < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
add_column :users, :authorized_projects_populated, :boolean
end
end