summaryrefslogtreecommitdiff
path: root/db/migrate
diff options
context:
space:
mode:
authorShinya Maeda <shinya@gitlab.com>2017-08-17 01:54:05 +0900
committerShinya Maeda <shinya@gitlab.com>2017-09-03 23:49:10 +0900
commite1ef436d1fd6419ce8a08c4ac33bf664786c80b0 (patch)
treedddd090cb598449df56a24204a40596d88b25fa4 /db/migrate
parent0a7b3ae9f1a67645c798dfbfc60388c4c9cb5b95 (diff)
downloadgitlab-ce-e1ef436d1fd6419ce8a08c4ac33bf664786c80b0.tar.gz
Update application code by the db schema change
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20170816133938_add_access_level_to_ci_runners.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20170816133938_add_access_level_to_ci_runners.rb b/db/migrate/20170816133938_add_access_level_to_ci_runners.rb
index 8cda0c3a717..58317d46eac 100644
--- a/db/migrate/20170816133938_add_access_level_to_ci_runners.rb
+++ b/db/migrate/20170816133938_add_access_level_to_ci_runners.rb
@@ -6,7 +6,7 @@ class AddAccessLevelToCiRunners < ActiveRecord::Migration
disable_ddl_transaction!
def up
- # Ci::Runner.protection_none: 0
+ # Ci::Runner.unprotected: 0
add_column_with_default(:ci_runners, :access_level, :integer, default: 0)
end