Commit 7a42dece authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Update schema with snippet content size

parent c43b2896
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment