diff --git a/db/post_migrate/20230726231029_remove_plan_limits_ci_active_pipelines_column.rb b/db/post_migrate/20230726231029_remove_plan_limits_ci_active_pipelines_column.rb new file mode 100644 index 0000000000000000000000000000000000000000..ef0a67574ba50e2c39b07011c0158d458c7e6eb2 --- /dev/null +++ b/db/post_migrate/20230726231029_remove_plan_limits_ci_active_pipelines_column.rb @@ -0,0 +1,13 @@ +# frozen_string_literal: true + +class RemovePlanLimitsCiActivePipelinesColumn < Gitlab::Database::Migration[2.1] + enable_lock_retries! + + def up + remove_column :plan_limits, :ci_active_pipelines + end + + def down + add_column :plan_limits, :ci_active_pipelines, :integer, default: 0, null: false + end +end diff --git a/db/schema_migrations/20230726231029 b/db/schema_migrations/20230726231029 new file mode 100644 index 0000000000000000000000000000000000000000..6db951be30232457de5353d53f2e6a3f35500573 --- /dev/null +++ b/db/schema_migrations/20230726231029 @@ -0,0 +1 @@ +0a8e2a1116e349879ad938264f1a40e996fc18c7c7b4c164b28b8d28cf1d7ee9 \ No newline at end of file diff --git a/db/structure.sql b/db/structure.sql index b556427e2993f7c26da0387a18947676f04fa344..2bf86aca72617d0aa4aa7f15492f0b9edaf5bd5c 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -20261,7 +20261,6 @@ ALTER SEQUENCE personal_access_tokens_id_seq OWNED BY personal_access_tokens.id; CREATE TABLE plan_limits ( id bigint NOT NULL, plan_id bigint NOT NULL, - ci_active_pipelines integer DEFAULT 0 NOT NULL, ci_pipeline_size integer DEFAULT 0 NOT NULL, ci_active_jobs integer DEFAULT 0 NOT NULL, project_hooks integer DEFAULT 100 NOT NULL,