summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorDrew Blessing <drew@gitlab.com>2016-01-29 08:28:58 -0600
committerDrew Blessing <drew@gitlab.com>2016-01-29 08:28:58 -0600
commit873f336ecc64f958079589e2144860da9d79a76b (patch)
treed21c7f11fa6ba632a82d2913838a0da7dc58e072 /db/schema.rb
parent227728712ec5b469a36dbaf8c9511098b4817741 (diff)
downloadgitlab-ce-873f336ecc64f958079589e2144860da9d79a76b.tar.gz
Increase LFS objects size column
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 2a2911bfbc7..96b5c3af1e5 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: 20160128212447) do
+ActiveRecord::Schema.define(version: 20160128233227) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -445,8 +445,8 @@ ActiveRecord::Schema.define(version: 20160128212447) do
add_index "labels", ["project_id"], name: "index_labels_on_project_id", using: :btree
create_table "lfs_objects", force: :cascade do |t|
- t.string "oid", null: false
- t.integer "size", null: false
+ t.string "oid", null: false
+ t.integer "size", limit: 8, null: false
t.datetime "created_at"
t.datetime "updated_at"
t.string "file"