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:
authorRubén Dávila <ruben@gitlab.com>2019-06-25 01:13:53 +0300
committerRubén Dávila <ruben@gitlab.com>2019-07-05 14:55:06 +0300
commit52a2b78b763edcd9046022e8f26794a3a4101211 (patch)
treefa117bae99b743e6a53b2f2a24fa4ddcb986cd71 /db/migrate/20190621022810_add_last_ci_minutes_usage_notification_level_to_namespaces.rb
parent9be879c174450b2ba2c1968d9b94cce0de95aa80 (diff)
Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14328
Diffstat (limited to 'db/migrate/20190621022810_add_last_ci_minutes_usage_notification_level_to_namespaces.rb')
-rw-r--r--db/migrate/20190621022810_add_last_ci_minutes_usage_notification_level_to_namespaces.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20190621022810_add_last_ci_minutes_usage_notification_level_to_namespaces.rb b/db/migrate/20190621022810_add_last_ci_minutes_usage_notification_level_to_namespaces.rb
new file mode 100644
index 00000000000..1611340284c
--- /dev/null
+++ b/db/migrate/20190621022810_add_last_ci_minutes_usage_notification_level_to_namespaces.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+class AddLastCiMinutesUsageNotificationLevelToNamespaces < ActiveRecord::Migration[5.1]
+ DOWNTIME = false
+
+ def change
+ add_column :namespaces, :last_ci_minutes_usage_notification_level, :integer
+ end
+end