Add order to Boards

This commit is contained in:
riggraz
2019-09-18 21:00:38 +02:00
parent 876f77e000
commit 109381e791
9 changed files with 57 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2019_09_16_131938) do
ActiveRecord::Schema.define(version: 2019_09_18_151626) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -20,6 +20,7 @@ ActiveRecord::Schema.define(version: 2019_09_16_131938) do
t.text "description"
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.integer "order", null: false
t.index ["name"], name: "index_boards_on_name", unique: true
end
@@ -40,7 +41,7 @@ ActiveRecord::Schema.define(version: 2019_09_16_131938) do
t.string "color", null: false
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.integer "order", default: 999, null: false
t.integer "order", null: false
t.boolean "show_in_roadmap", default: false, null: false
t.index ["name"], name: "index_post_statuses_on_name", unique: true
end