summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-07-15 10:33:16 -0700
committerStan Hu <stanhu@gmail.com>2019-07-15 10:33:16 -0700
commit51b5bc781cf34497a6975faa640ae7dea99cfd27 (patch)
tree5ca99f71d154a3ce8da488a8bd0803e52540dbf1
parent96277bb9d61b5aaf5c2edc388c5eabfc743478f0 (diff)
downloadgitlab-ce-sh-reorder-boards-schema-db.tar.gz
Reorder fields in boards schema to match EEsh-reorder-boards-schema-db
This eliminates conflicts between CE and EE db/schema.rb files.
-rw-r--r--db/schema.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 5cb21a70a4f..e6a52e691c1 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -405,10 +405,10 @@ ActiveRecord::Schema.define(version: 2019_07_03_130053) do
t.integer "project_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
- t.integer "group_id"
+ t.string "name", default: "Development", null: false
t.integer "milestone_id"
+ t.integer "group_id"
t.integer "weight"
- t.string "name", default: "Development", null: false
t.index ["group_id"], name: "index_boards_on_group_id", using: :btree
t.index ["milestone_id"], name: "index_boards_on_milestone_id", using: :btree
t.index ["project_id"], name: "index_boards_on_project_id", using: :btree