diff options
author | Sean McGivern <sean@gitlab.com> | 2019-05-27 16:19:10 +0100 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2019-05-27 16:19:10 +0100 |
commit | dd24835ee8541050b41d95ee20536184cff36b15 (patch) | |
tree | 60583ff9bd15e5ebd3b608b8bd827c6050a9e2f7 /db/schema.rb | |
parent | 31315850b0108b82b7bb3aa70194dc4dafc9ee7d (diff) | |
download | gitlab-ce-experiment-with-array-columm-for-labels.tar.gz |
Experiment with array column for label titlesexperiment-with-array-columm-for-labels
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 412b5313b69..78e30f72db5 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20190516011213) do +ActiveRecord::Schema.define(version: 20190527135836) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -1089,6 +1089,7 @@ ActiveRecord::Schema.define(version: 20190516011213) do t.datetime_with_timezone "closed_at" t.integer "closed_by_id" t.integer "state_id", limit: 2 + t.text "label_titles", array: true t.index ["author_id"], name: "index_issues_on_author_id", using: :btree t.index ["closed_by_id"], name: "index_issues_on_closed_by_id", using: :btree t.index ["confidential"], name: "index_issues_on_confidential", using: :btree @@ -1347,6 +1348,7 @@ ActiveRecord::Schema.define(version: 20190516011213) do t.boolean "squash", default: false, null: false t.boolean "allow_maintainer_to_push" t.integer "state_id", limit: 2 + t.text "label_titles", array: true t.index ["assignee_id"], name: "index_merge_requests_on_assignee_id", using: :btree t.index ["author_id"], name: "index_merge_requests_on_author_id", using: :btree t.index ["created_at"], name: "index_merge_requests_on_created_at", using: :btree |