summaryrefslogtreecommitdiff
path: root/db/migrate/20170711145320_add_status_to_ci_stages.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170711145320_add_status_to_ci_stages.rb')
-rw-r--r--db/migrate/20170711145320_add_status_to_ci_stages.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20170711145320_add_status_to_ci_stages.rb b/db/migrate/20170711145320_add_status_to_ci_stages.rb
new file mode 100644
index 00000000000..d497a61a959
--- /dev/null
+++ b/db/migrate/20170711145320_add_status_to_ci_stages.rb
@@ -0,0 +1,9 @@
+class AddStatusToCiStages < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ def change
+ add_column :ci_stages, :status, :integer
+ end
+end