gitlab-org--gitlab-foss/db/migrate/20161017091941_add_authoriz...

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