From: Jason Woofenden Date: Fri, 12 Jun 2015 13:31:17 +0000 (-0400) Subject: don't truncate really big cms pages X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl-cms.git;a=commitdiff_plain;h=d47de7abd5fa48cf5911f1e32ba1a806a8c12bcb don't truncate really big cms pages --- diff --git a/admin_pages.sql b/admin_pages.sql index 9d788a7..76d52d9 100644 --- a/admin_pages.sql +++ b/admin_pages.sql @@ -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 "" );