From: Jason Woofenden Date: Fri, 26 Sep 2014 00:48:14 +0000 (-0400) Subject: Create blank home page by default X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl-cms.git;a=commitdiff_plain;h=fdf2fd97e6b48527d753771a68bc7866076c5e4f Create blank home page by default That way the site doesn't give a 404. --- diff --git a/admin_pages.sql b/admin_pages.sql index e82ed35..c3c5adf 100644 --- a/admin_pages.sql +++ b/admin_pages.sql @@ -9,3 +9,4 @@ create table cms_pages ( description text not null default "", keywords text not null default "" ); +insert into cms_pages (filename,title,content) values ('index', 'Home', 'Under Construction');