summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorAmit Rathi <amit@hypertrack.io>2018-11-15 18:00:44 +0530
committerAmit Rathi <amit@hypertrack.io>2018-11-15 18:00:44 +0530
commitadfaafe7b07a14ba502b483233c316c85aacecde (patch)
tree4ce2d751d61e3145f891cf9e6f9aaad03f144a3c /db
parent161e66890c734ec9a77fc25021572194a3ff246b (diff)
downloadgitlab-ce-adfaafe7b07a14ba502b483233c316c85aacecde.tar.gz
Cleanup schema.rb
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 865ef04b95b..3772419b3c0 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -846,8 +846,8 @@ ActiveRecord::Schema.define(version: 20181107054254) do
t.datetime "created_at"
t.datetime "updated_at"
t.string "on_stop"
- t.datetime_with_timezone "finished_at"
t.integer "status", limit: 2, default: 2, null: false
+ t.datetime_with_timezone "finished_at"
end
add_index "deployments", ["created_at"], name: "index_deployments_on_created_at", using: :btree
@@ -1875,7 +1875,6 @@ ActiveRecord::Schema.define(version: 20181107054254) do
end
add_index "redirect_routes", ["path"], name: "index_redirect_routes_on_path", unique: true, using: :btree
- add_index "redirect_routes", ["path"], name: "index_redirect_routes_on_path_text_pattern_ops", using: :btree, opclasses: {"path"=>"varchar_pattern_ops"}
add_index "redirect_routes", ["source_type", "source_id"], name: "index_redirect_routes_on_source_type_and_source_id", using: :btree
create_table "releases", force: :cascade do |t|