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 17:11:53 +0300
committerAlexis Reigel <mail@koffeinfrei.org>2017-07-27 16:46:03 +0300
commit895efdfbcfe6082709943767dc8b3ebf399e1283 (patch)
tree49ed0fa9b14194cb779139e846c573289353faab /db/schema.rb
parent8e0c33ed1337e3614fe87d9d0c1eb64af90cc61a (diff)
use text instead of string for db columns
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 68b5963ec14..6fa8be79156 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -560,8 +560,8 @@ ActiveRecord::Schema.define(version: 20170725145659) do
t.boolean "valid_signature"
t.binary "commit_sha"
t.binary "gpg_key_primary_keyid"
- t.string "gpg_key_user_name"
- t.string "gpg_key_user_email"
+ t.text "gpg_key_user_name"
+ t.text "gpg_key_user_email"
end
add_index "gpg_signatures", ["commit_sha"], name: "index_gpg_signatures_on_commit_sha", using: :btree