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-12 21:36:54 +0300
committerMayra Cabrera <mcabrera@gitlab.com>2019-06-12 21:36:54 +0300
commit2c2abf0b8a96ff4d193b872a025497515ce6837c (patch)
treea05fcaf1e7068a8b9a3cf02283af285379904088 /db/migrate/20190606014128_add_last_ci_minutes_notification_at_to_namespaces.rb
parent1b42447e26a570fad56e2da9e75df535e3f37426 (diff)
Backport of gitlab-ee!13735
Diffstat (limited to 'db/migrate/20190606014128_add_last_ci_minutes_notification_at_to_namespaces.rb')
-rw-r--r--db/migrate/20190606014128_add_last_ci_minutes_notification_at_to_namespaces.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/migrate/20190606014128_add_last_ci_minutes_notification_at_to_namespaces.rb b/db/migrate/20190606014128_add_last_ci_minutes_notification_at_to_namespaces.rb
new file mode 100644
index 00000000000..c264a23cda0
--- /dev/null
+++ b/db/migrate/20190606014128_add_last_ci_minutes_notification_at_to_namespaces.rb
@@ -0,0 +1,12 @@
+# frozen_string_literal: true
+
+# See http://doc.gitlab.com/ce/development/migration_style_guide.html
+# for more information on how to write migrations for GitLab.
+
+class AddLastCiMinutesNotificationAtToNamespaces < ActiveRecord::Migration[5.1]
+ DOWNTIME = false
+
+ def change
+ add_column :namespaces, :last_ci_minutes_notification_at, :datetime_with_timezone
+ end
+end