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/20220401113123_add_check_constraint_to_vsa_aggregation_runtime_data_columns.rb')
-rw-r--r--db/migrate/20220401113123_add_check_constraint_to_vsa_aggregation_runtime_data_columns.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/db/migrate/20220401113123_add_check_constraint_to_vsa_aggregation_runtime_data_columns.rb b/db/migrate/20220401113123_add_check_constraint_to_vsa_aggregation_runtime_data_columns.rb
deleted file mode 100644
index 4863a1f0030..00000000000
--- a/db/migrate/20220401113123_add_check_constraint_to_vsa_aggregation_runtime_data_columns.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-# frozen_string_literal: true
-
-class AddCheckConstraintToVsaAggregationRuntimeDataColumns < Gitlab::Database::Migration[1.0]
- FULL_RUNTIMES_IN_SECONDS_CONSTRAINT = 'full_runtimes_in_seconds_size'
- FULL_PROCESSED_RECORDS_CONSTRAINT = 'full_processed_records_size'
-
- disable_ddl_transaction!
-
- def up
- add_check_constraint(:analytics_cycle_analytics_aggregations,
- 'CARDINALITY(full_runtimes_in_seconds) <= 10',
- FULL_RUNTIMES_IN_SECONDS_CONSTRAINT)
-
- add_check_constraint(:analytics_cycle_analytics_aggregations,
- 'CARDINALITY(full_processed_records) <= 10',
- FULL_PROCESSED_RECORDS_CONSTRAINT)
- end
-
- def down
- remove_check_constraint :analytics_cycle_analytics_aggregations, FULL_RUNTIMES_IN_SECONDS_CONSTRAINT
- remove_check_constraint :analytics_cycle_analytics_aggregations, FULL_PROCESSED_RECORDS_CONSTRAINT
- end
-end