diff options
author | francis <francis> | 2008-05-11 23:55:38 +0000 |
---|---|---|
committer | francis <francis> | 2008-05-11 23:55:38 +0000 |
commit | 214ccea5856fadc2cceba6ce34389847ab4dd207 (patch) | |
tree | 19c65dcffcc8f965241422d082086f2f5045d536 /db/schema.rb | |
parent | 50fc963cd136c794e6227ae00a778abdac57090b (diff) |
Allow more than 255 charcters in comment in history, so doesn't give weird errors when you enter long comments.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb index b2466841d..254607810 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -9,7 +9,7 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 53) do +ActiveRecord::Schema.define(:version => 54) do create_table "acts_as_xapian_jobs", :force => true do |t| t.string "model", :null => false @@ -111,7 +111,7 @@ ActiveRecord::Schema.define(:version => 53) do t.text "request_email" t.datetime "updated_at" t.string "last_edit_editor" - t.string "last_edit_comment" + t.text "last_edit_comment" t.text "url_name" end |