JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
don't truncate really big cms pages
authorJason Woofenden <jason@jasonwoof.com>
Fri, 12 Jun 2015 13:31:17 +0000 (09:31 -0400)
committerJason Woofenden <jason@jasonwoof.com>
Fri, 12 Jun 2015 13:31:17 +0000 (09:31 -0400)
admin_pages.sql

index 9d788a7..76d52d9 100644 (file)
@@ -5,7 +5,7 @@ create table cms_pages (
     title varchar(200) not null default "",
     nav_title varchar(200) not null default "",
     navbar int not null default 0,
-    content text not null default "",
+    content mediumtext not null default "",
     description text not null default "",
     keywords text not null default ""
 );