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:
authorMarin Jankovski <maxlazio@gmail.com>2015-11-16 17:36:14 +0300
committerMarin Jankovski <maxlazio@gmail.com>2015-11-16 17:36:14 +0300
commitf445d3d1f317d8addbe60cf31fa15ca592ba0d19 (patch)
tree0a82ae61d89609b0c7ee23a1c9d82f6c9010b89f /db
parent1328e4b504773ff98d716fd561dbc50fd7652a36 (diff)
unique is for indexes.
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index a8e8dfe6bbf..4870fe3fc4c 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -423,7 +423,7 @@ ActiveRecord::Schema.define(version: 20151114113410) do
add_index "labels", ["project_id"], name: "index_labels_on_project_id", using: :btree
create_table "lfs_objects", force: true do |t|
- t.string "oid", null: false, unique: true
+ t.string "oid", null: false
t.integer "size", null: false
t.datetime "created_at"
t.datetime "updated_at"