Welcome Guest, Not a member yet? Register   Sign In
PyroCMS v0.9.7.4 - an open-source modular general purpose CMS

[eluser]davidbehler[/eluser]
Hey,
I just downloaded the most current version from git (http://github.com/philsturgeon/pyrocms/tree/master) and there is an error in the sql file:
Code:
CREATE TABLE `pages` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `slug` varchar(60) collate utf8_unicode_ci NOT NULL default '',
  `title` varchar(60) collate utf8_unicode_ci NOT NULL default '',
  `body` text collate utf8_unicode_ci NOT NULL,
  `parent` int(11) default '0',
  `lang` varchar(2) collate utf8_unicode_ci NOT NULL,
  `layout_file` varchar(255) collate utf8_unicode_ci NOT NULL default 'default',
  `meta_title` varchar(255) collate utf8_unicode_ci NOT NULL,
  `meta_keywords` varchar(255) collate utf8_unicode_ci NOT NULL,
  `meta_description` text collate utf8_unicode_ci NOT NULL,
  `updated_on` varchar(11) collate utf8_unicode_ci NOT NULL default '',
    `layout_file` varchar(255) collate utf8_unicode_ci NOT NULL default 'default',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `Language Unique` (`slug`,`lang`),
  KEY `slug` (`slug`),
  KEY `parent` (`parent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='User Editable Pages';

The column layout_file is defined twice.

I will try to create a german version of the language files if that's ok with you.


Messages In This Thread
PyroCMS v0.9.7.4 - an open-source modular general purpose CMS - by El Forum - 07-02-2009, 08:35 AM



Theme © iAndrew 2016 - Forum software by © MyBB