From 1b74e2d562a4ba2a2e882ab2cfc5b4994640678b Mon Sep 17 00:00:00 2001 From: technoweenie Date: Wed, 21 Feb 2007 16:14:40 +0000 Subject: [PATCH] update logged_exception message column to TEXT datatype git-svn-id: http://svn.techno-weenie.net/projects/plugins/exception_logger@2753 567b1171-46fb-0310-a4c9-b4bef9110e78 --- generators/exception_migration/templates/migration.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generators/exception_migration/templates/migration.rb b/generators/exception_migration/templates/migration.rb index 13ef4be..e1700a8 100644 --- a/generators/exception_migration/templates/migration.rb +++ b/generators/exception_migration/templates/migration.rb @@ -4,7 +4,7 @@ def self.up t.column :exception_class, :string t.column :controller_name, :string t.column :action_name, :string - t.column :message, :string + t.column :message, :text t.column :backtrace, :text t.column :environment, :text t.column :request, :text