summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-07-12 16:18:43 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-07-12 16:18:43 +0300
commit7a42decec7a58c4824a1b951368d19b4ba3336dd (patch)
tree824a7a19639a6682448b3a750fd7e9aca5286090 /db
parentc43b289612b2420bc7e3c5faaf014b527ccace04 (diff)
downloadgitlab-ce-7a42decec7a58c4824a1b951368d19b4ba3336dd.tar.gz
Update schema with snippet content size
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 3208e8c2354..4ada3d07263 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -208,14 +208,14 @@ ActiveRecord::Schema.define(:version => 20130624162710) do
create_table "snippets", :force => true do |t|
t.string "title"
- t.text "content"
- t.integer "author_id", :null => false
+ t.text "content", :limit => 2147483647
+ t.integer "author_id", :null => false
t.integer "project_id"
t.datetime "created_at"
t.datetime "updated_at"
t.string "file_name"
t.datetime "expires_at"
- t.boolean "private", :default => true, :null => false
+ t.boolean "private", :default => true, :null => false
t.string "type"
end