diff options
-rw-r--r-- | db/migrate/20180406202229_change_ci_job_trace_chunks_raw_data.rb | 10 | ||||
-rw-r--r-- | db/schema.rb | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/db/migrate/20180406202229_change_ci_job_trace_chunks_raw_data.rb b/db/migrate/20180406202229_change_ci_job_trace_chunks_raw_data.rb new file mode 100644 index 00000000000..980034be198 --- /dev/null +++ b/db/migrate/20180406202229_change_ci_job_trace_chunks_raw_data.rb @@ -0,0 +1,10 @@ +class ChangeCiJobTraceChunksRawData < ActiveRecord::Migration + include Gitlab::Database::MigrationHelpers + + DOWNTIME = false + + def change + + change_column :ci_job_trace_chunks, :raw_data, :text, limit: 2147483647 + end +end diff --git a/db/schema.rb b/db/schema.rb index 66e86a819be..5c5f668cd4e 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: 20180405101928) do +ActiveRecord::Schema.define(version: 20180406202229) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" |