Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20191030135044_create_plan_limits.rb')
-rw-r--r--db/migrate/20191030135044_create_plan_limits.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db/migrate/20191030135044_create_plan_limits.rb b/db/migrate/20191030135044_create_plan_limits.rb
deleted file mode 100644
index 291d9824f6d..00000000000
--- a/db/migrate/20191030135044_create_plan_limits.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-# frozen_string_literal: true
-
-class CreatePlanLimits < ActiveRecord::Migration[5.2]
- DOWNTIME = false
-
- def change
- create_table :plan_limits, id: false do |t|
- t.references :plan, foreign_key: { on_delete: :cascade }, null: false, index: { unique: true }
- t.integer :ci_active_pipelines, null: false, default: 0
- t.integer :ci_pipeline_size, null: false, default: 0
- t.integer :ci_active_jobs, null: false, default: 0
- end
- end
-end