2020-01-31 19:08:41 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AddUsageToPagesDomains < ActiveRecord::Migration[5.2]
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
PAGES_USAGE = 0
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def up
|
2020-05-15 11:08:04 -04:00
|
|
|
add_column_with_default :pages_domains, :usage, :integer, limit: 2, default: PAGES_USAGE, allow_null: false # rubocop:disable Migration/AddColumnWithDefault
|
2020-01-31 19:08:41 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
remove_column :pages_domains, :usage
|
|
|
|
end
|
|
|
|
end
|