diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-06-30 14:22:23 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-06-30 14:22:23 +0200 |
commit | 9c7c95c768cd5294dd085c2fc2425fae91c4c689 (patch) | |
tree | f05de41bee3d35f451bfe0ef22fd2cc929d7ce1a /db/schema.rb | |
parent | 81dba76b9d7d120cd22e3619a4058bd4885be9bc (diff) | |
download | gitlab-ce-9c7c95c768cd5294dd085c2fc2425fae91c4c689.tar.gz |
Add initial changes for stages statuses migration
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 8c7440ee610..f34dd32fb74 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: 20170622162730) do +ActiveRecord::Schema.define(version: 20170630111158) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -337,6 +337,7 @@ ActiveRecord::Schema.define(version: 20170622162730) do t.datetime "created_at" t.datetime "updated_at" t.string "name" + t.integer "status" end add_index "ci_stages", ["pipeline_id", "name"], name: "index_ci_stages_on_pipeline_id_and_name", using: :btree |