summaryrefslogtreecommitdiff
path: root/db/migrate/20160811172945_add_can_push_to_keys.rb
diff options
context:
space:
mode:
authorAli Ibrahim <aliibrahim@gmail.com>2016-08-14 13:49:08 -0400
committerAli Ibrahim <aliibrahim@gmail.com>2016-08-17 11:11:08 -0400
commit2b73aaa15ad9f651f51f8c71de461da6664a4fbb (patch)
tree0704849e63b0d396ab367056348c1eb90646b884 /db/migrate/20160811172945_add_can_push_to_keys.rb
parentd1da2e8180d92e5f4a8b5ebb36b0f4e4d0618bf8 (diff)
downloadgitlab-ce-2b73aaa15ad9f651f51f8c71de461da6664a4fbb.tar.gz
Allow to add deploy keys with write-access
Diffstat (limited to 'db/migrate/20160811172945_add_can_push_to_keys.rb')
-rw-r--r--db/migrate/20160811172945_add_can_push_to_keys.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/db/migrate/20160811172945_add_can_push_to_keys.rb b/db/migrate/20160811172945_add_can_push_to_keys.rb
new file mode 100644
index 00000000000..de7d07ccabb
--- /dev/null
+++ b/db/migrate/20160811172945_add_can_push_to_keys.rb
@@ -0,0 +1,27 @@
+# See http://doc.gitlab.com/ce/development/migration_style_guide.html
+# for more information on how to write migrations for GitLab.
+
+class AddCanPushToKeys < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ # Set this constant to true if this migration requires downtime.
+ DOWNTIME = false
+
+ # When a migration requires downtime you **must** uncomment the following
+ # constant and define a short and easy to understand explanation as to why the
+ # migration requires downtime.
+ # DOWNTIME_REASON = ''
+
+ # When using the methods "add_concurrent_index" or "add_column_with_default"
+ # you must disable the use of transactions as these methods can not run in an
+ # existing transaction. When using "add_concurrent_index" make sure that this
+ # method is the _only_ method called in the migration, any other changes
+ # should go in a separate migration. This ensures that upon failure _only_ the
+ # index creation fails and can be retried or reverted easily.
+ #
+ disable_ddl_transaction!
+
+ def change
+ add_column_with_default(:keys, :can_push, :boolean, default: false, allow_null: false)
+ end
+end