debian-mirror-gitlab/db/migrate/20200617150041_create_namespace_limits.rb
2020-08-09 17:44:08 +05:30

23 lines
600 B
Ruby

# frozen_string_literal: true
class CreateNamespaceLimits < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def up
with_lock_retries do
create_table :namespace_limits, id: false do |t|
t.bigint :additional_purchased_storage_size, default: 0, null: false
t.date :additional_purchased_storage_ends_on, null: true
t.references :namespace, primary_key: true, default: nil, type: :integer, index: false, foreign_key: { on_delete: :cascade }
end
end
end
def down
drop_table :namespace_limits
end
end