summaryrefslogtreecommitdiff
path: root/db/migrate/20160504112519_add_run_untagged_to_ci_runner.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160504112519_add_run_untagged_to_ci_runner.rb')
-rw-r--r--db/migrate/20160504112519_add_run_untagged_to_ci_runner.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/db/migrate/20160504112519_add_run_untagged_to_ci_runner.rb b/db/migrate/20160504112519_add_run_untagged_to_ci_runner.rb
new file mode 100644
index 00000000000..c60892a6279
--- /dev/null
+++ b/db/migrate/20160504112519_add_run_untagged_to_ci_runner.rb
@@ -0,0 +1,14 @@
+# rubocop:disable all
+class AddRunUntaggedToCiRunner < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+ disable_ddl_transaction!
+
+ def up
+ add_column_with_default(:ci_runners, :run_untagged, :boolean,
+ default: true, allow_null: false)
+ end
+
+ def down
+ remove_column(:ci_runners, :run_untagged)
+ end
+end