summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorKamil TrzciƄski <ayufan@ayufan.eu>2018-04-04 12:19:17 +0200
committerShinya Maeda <shinya@gitlab.com>2018-04-05 14:14:54 +0900
commit2fac77b0819fc951bb9e896d2615f8a550093707 (patch)
tree6ed9517691029c840994598459a20cde1d14e237 /db/schema.rb
parentde5194cdb8136d424e0ba88914645cb7936299be (diff)
downloadgitlab-ce-2fac77b0819fc951bb9e896d2615f8a550093707.tar.gz
Simpler chunking :)
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 54346dadad2..efad5bd6b1c 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -373,7 +373,8 @@ ActiveRecord::Schema.define(version: 20180327101207) do
create_table "ci_job_trace_chunks", force: :cascade do |t|
t.integer "job_id", null: false
t.integer "chunk_index", null: false
- t.text "data"
+ t.integer "data_store", null: false
+ t.text "raw_data"
end
add_index "ci_job_trace_chunks", ["chunk_index", "job_id"], name: "index_ci_job_trace_chunks_on_chunk_index_and_job_id", unique: true, using: :btree