summaryrefslogtreecommitdiff
path: root/db/migrate/20210301150451_add_tier_to_environments.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210301150451_add_tier_to_environments.rb')
-rw-r--r--db/migrate/20210301150451_add_tier_to_environments.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/db/migrate/20210301150451_add_tier_to_environments.rb b/db/migrate/20210301150451_add_tier_to_environments.rb
new file mode 100644
index 00000000000..28592dd2bf6
--- /dev/null
+++ b/db/migrate/20210301150451_add_tier_to_environments.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+class AddTierToEnvironments < ActiveRecord::Migration[6.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ def up
+ with_lock_retries do
+ add_column :environments, :tier, :smallint
+ end
+ end
+
+ def down
+ with_lock_retries do
+ remove_column :environments, :tier
+ end
+ end
+end