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

10 lines
228 B
Ruby

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