This repository has been archived on 2020-06-13. You can view files and clone it, but cannot push or open issues/pull-requests.
penguincoder.org-horde/scripts/db/penguincoder.sql

10 lines
336 B
SQL

CREATE TABLE `penguin_data` (
`id` int(11) NOT NULL auto_increment,
`time_created` int(11) NOT NULL default '0',
`time_modified` int(11) NOT NULL default '0',
`title` varchar(255) default NULL,
`category` varchar(255) NOT NULL default 'Journal',
`info` longtext,
`attributes` longtext,
PRIMARY KEY (`id`)
) TYPE=MyISAM;