Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-02-16 00:16:31 +0300
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-02-16 00:16:31 +0300
commit20d613639bd90d9f3379d4665a2e3adc5f6b8b17 (patch)
tree4a47a66736d90ba307eb8f44b504219f35cd5c08 /db
parentfd6e36e95b27a250407f93d09ad894a72c248bb7 (diff)
Fix borked db stuff
Diffstat (limited to 'db')
-rw-r--r--db/post_migrate/20170215200045_remove_theme_id_from_users.rb (renamed from db/post_migrate/20170213172852_remove_theme_id_from_users.rb)0
-rw-r--r--db/schema.rb4
2 files changed, 2 insertions, 2 deletions
diff --git a/db/post_migrate/20170213172852_remove_theme_id_from_users.rb b/db/post_migrate/20170215200045_remove_theme_id_from_users.rb
index 857f678ad0e..857f678ad0e 100644
--- a/db/post_migrate/20170213172852_remove_theme_id_from_users.rb
+++ b/db/post_migrate/20170215200045_remove_theme_id_from_users.rb
diff --git a/db/schema.rb b/db/schema.rb
index 32cbefc2566..bd6b56df9ba 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: 20170213172852) do
+ActiveRecord::Schema.define(version: 20170215200045) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -580,9 +580,9 @@ ActiveRecord::Schema.define(version: 20170213172852) do
end
add_index "labels", ["group_id", "project_id", "title"], name: "index_labels_on_group_id_and_project_id_and_title", unique: true, using: :btree
- add_index "labels", ["type", "project_id"], name: "index_labels_on_type_and_project_id", using: :btree
add_index "labels", ["project_id"], name: "index_labels_on_project_id", using: :btree
add_index "labels", ["title"], name: "index_labels_on_title", using: :btree
+ add_index "labels", ["type", "project_id"], name: "index_labels_on_type_and_project_id", using: :btree
create_table "lfs_objects", force: :cascade do |t|
t.string "oid", null: false