mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-15 23:30:46 +00:00
12 lines
284 B
Ruby
12 lines
284 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddHiddenToProjects < Gitlab::Database::Migration[1.0]
|
|
DOWNTIME = false
|
|
|
|
enable_lock_retries!
|
|
|
|
def change
|
|
add_column :projects, :hidden, :boolean, default: false, null: false # rubocop: disable Migration/AddColumnsToWideTables
|
|
end
|
|
end
|