Change merge_error column from string to text type
In some cases, the artificial 255-character limit would cause an error in MergeWorker. Closes #20593
This commit is contained in:
parent
148b8487b8
commit
f7ddd4d090
3 changed files with 14 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
||||||
Please view this file on the master branch, on stable branches it's out of date.
|
Please view this file on the master branch, on stable branches it's out of date.
|
||||||
|
|
||||||
v 8.12.0 (unreleased)
|
v 8.12.0 (unreleased)
|
||||||
|
- Change merge_error column from string to text type
|
||||||
- Optimistic locking for Issues and Merge Requests (title and description overriding prevention)
|
- Optimistic locking for Issues and Merge Requests (title and description overriding prevention)
|
||||||
|
|
||||||
v 8.11.0 (unreleased)
|
v 8.11.0 (unreleased)
|
||||||
|
|
10
db/migrate/20160823081327_change_merge_error_to_text.rb
Normal file
10
db/migrate/20160823081327_change_merge_error_to_text.rb
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
class ChangeMergeErrorToText < ActiveRecord::Migration
|
||||||
|
include Gitlab::Database::MigrationHelpers
|
||||||
|
|
||||||
|
DOWNTIME = true
|
||||||
|
DOWNTIME_REASON = 'This migration requires downtime because it alters a column from varchar(255) to text.'
|
||||||
|
|
||||||
|
def change
|
||||||
|
change_column :merge_requests, :merge_error, :text, limit: 65535
|
||||||
|
end
|
||||||
|
end
|
|
@ -11,7 +11,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# 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
|
# These are extensions that must be enabled in order to support this database
|
||||||
enable_extension "plpgsql"
|
enable_extension "plpgsql"
|
||||||
|
@ -613,7 +613,7 @@ ActiveRecord::Schema.define(version: 20160819221833) do
|
||||||
t.integer "position", default: 0
|
t.integer "position", default: 0
|
||||||
t.datetime "locked_at"
|
t.datetime "locked_at"
|
||||||
t.integer "updated_by_id"
|
t.integer "updated_by_id"
|
||||||
t.string "merge_error"
|
t.text "merge_error"
|
||||||
t.text "merge_params"
|
t.text "merge_params"
|
||||||
t.boolean "merge_when_build_succeeds", default: false, null: false
|
t.boolean "merge_when_build_succeeds", default: false, null: false
|
||||||
t.integer "merge_user_id"
|
t.integer "merge_user_id"
|
||||||
|
|
Loading…
Reference in a new issue