summaryrefslogtreecommitdiff
path: root/db/migrate/20181015155839_add_finished_at_to_deployments.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20181015155839_add_finished_at_to_deployments.rb')
-rw-r--r--db/migrate/20181015155839_add_finished_at_to_deployments.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/db/migrate/20181015155839_add_finished_at_to_deployments.rb b/db/migrate/20181015155839_add_finished_at_to_deployments.rb
new file mode 100644
index 00000000000..1a061bb0f5f
--- /dev/null
+++ b/db/migrate/20181015155839_add_finished_at_to_deployments.rb
@@ -0,0 +1,15 @@
+# frozen_string_literal: true
+
+class AddFinishedAtToDeployments < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ def up
+ add_column :deployments, :finished_at, :datetime_with_timezone
+ end
+
+ def down
+ remove_column :deployments, :finished_at, :datetime_with_timezone
+ end
+end