diff options
author | Marin Jankovski <maxlazio@gmail.com> | 2015-11-16 15:36:14 +0100 |
---|---|---|
committer | Marin Jankovski <maxlazio@gmail.com> | 2015-11-16 15:36:14 +0100 |
commit | f445d3d1f317d8addbe60cf31fa15ca592ba0d19 (patch) | |
tree | 0a82ae61d89609b0c7ee23a1c9d82f6c9010b89f /db | |
parent | 1328e4b504773ff98d716fd561dbc50fd7652a36 (diff) | |
download | gitlab-ce-f445d3d1f317d8addbe60cf31fa15ca592ba0d19.tar.gz |
unique is for indexes.
Diffstat (limited to 'db')
-rw-r--r-- | db/schema.rb | 2 |
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" |