Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorRubén Dávila <ruben@gitlab.com>2017-09-27 03:42:23 +0300
committerRubén Dávila <ruben@gitlab.com>2017-10-05 16:25:27 +0300
commit62d540340120baac7fa432108a7847cbc2a1cbe5 (patch)
tree5c7e624d5ed4ccb3b5efb8b18845fb44290e852d /db
parent5ae8e3787afa309d4e563a3c17804ede828f7a5a (diff)
Process and create subkeys when a new GPG key is created
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20170926050624_add_parent_id_to_gpg_keys.rb10
-rw-r--r--db/schema.rb1
2 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20170926050624_add_parent_id_to_gpg_keys.rb b/db/migrate/20170926050624_add_parent_id_to_gpg_keys.rb
new file mode 100644
index 00000000000..ef7675be106
--- /dev/null
+++ b/db/migrate/20170926050624_add_parent_id_to_gpg_keys.rb
@@ -0,0 +1,10 @@
+# See http://doc.gitlab.com/ce/development/migration_style_guide.html
+# for more information on how to write migrations for GitLab.
+
+class AddParentIdToGpgKeys < ActiveRecord::Migration
+ DOWNTIME = false
+
+ def change
+ add_column :gpg_keys, :parent_id, :integer
+ end
+end
diff --git a/db/schema.rb b/db/schema.rb
index 17be774e9de..9b1457c9a03 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -586,6 +586,7 @@ ActiveRecord::Schema.define(version: 20171004121444) do
t.binary "primary_keyid"
t.binary "fingerprint"
t.text "key"
+ t.integer "parent_id"
end
add_index "gpg_keys", ["fingerprint"], name: "index_gpg_keys_on_fingerprint", unique: true, using: :btree