Commit 7a42decec7a58c4824a1b951368d19b4ba3336dd
1 parent
c43b2896
Exists in
master
and in
4 other branches
Update schema with snippet content size
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
db/schema.rb
... | ... | @@ -208,14 +208,14 @@ ActiveRecord::Schema.define(:version => 20130624162710) do |
208 | 208 | |
209 | 209 | create_table "snippets", :force => true do |t| |
210 | 210 | t.string "title" |
211 | - t.text "content" | |
212 | - t.integer "author_id", :null => false | |
211 | + t.text "content", :limit => 2147483647 | |
212 | + t.integer "author_id", :null => false | |
213 | 213 | t.integer "project_id" |
214 | 214 | t.datetime "created_at" |
215 | 215 | t.datetime "updated_at" |
216 | 216 | t.string "file_name" |
217 | 217 | t.datetime "expires_at" |
218 | - t.boolean "private", :default => true, :null => false | |
218 | + t.boolean "private", :default => true, :null => false | |
219 | 219 | t.string "type" |
220 | 220 | end |
221 | 221 | ... | ... |