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
diff options
context:
space:
mode:
authorAlexis Reigel <mail@koffeinfrei.org>2017-07-20 16:44:15 +0300
committerAlexis Reigel <mail@koffeinfrei.org>2017-07-27 16:46:03 +0300
commit8e0c33ed1337e3614fe87d9d0c1eb64af90cc61a (patch)
treee41eff2b3d647de4062147b233e35719f2fa92e2 /db/schema.rb
parent8c8a9e6d3fcb529e95d76dc9a7d4e37542a2036f (diff)
use ShaAttribute for gpg table columns
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/db/schema.rb b/db/schema.rb
index f413aaa41cd..68b5963ec14 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -544,8 +544,8 @@ ActiveRecord::Schema.define(version: 20170725145659) do
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "user_id"
- t.string "fingerprint"
- t.string "primary_keyid"
+ t.binary "primary_keyid"
+ t.binary "fingerprint"
t.text "key"
end
@@ -558,8 +558,8 @@ ActiveRecord::Schema.define(version: 20170725145659) do
t.integer "project_id"
t.integer "gpg_key_id"
t.boolean "valid_signature"
- t.string "commit_sha"
- t.string "gpg_key_primary_keyid"
+ t.binary "commit_sha"
+ t.binary "gpg_key_primary_keyid"
t.string "gpg_key_user_name"
t.string "gpg_key_user_email"
end