summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2016-08-23 01:19:58 -0700
committerStan Hu <stanhu@gmail.com>2016-08-23 08:06:48 -0700
commitc16a31b931f665924e27959116b7f840064bbd95 (patch)
tree0c51ba8ecabbc5c21d00c2b35ae27ea6a658e871 /db/schema.rb
parent148b8487b817a0c8854c6842109ce1abc5aa4306 (diff)
downloadgitlab-ce-change-merge-error-to-text.tar.gz
Change merge_error column from string to text typechange-merge-error-to-text
In some cases, the artificial 255-character limit would cause an error in MergeWorker. In PostgreSQL, this MR will just cause Rails to use a higher limit. In MySQL, this MR will change the database column type. Closes #20593
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 25cfb5de2fa..802c928b2fc 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20160819221833) do
+ActiveRecord::Schema.define(version: 20160823081327) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -613,7 +613,7 @@ ActiveRecord::Schema.define(version: 20160819221833) do
t.integer "position", default: 0
t.datetime "locked_at"
t.integer "updated_by_id"
- t.string "merge_error"
+ t.text "merge_error"
t.text "merge_params"
t.boolean "merge_when_build_succeeds", default: false, null: false
t.integer "merge_user_id"