oc-server3/htdocs/doc/sql/tables/cache_report_status.sql
2012-05-17 23:42:08 +02:00

10 lines
338 B
SQL

SET NAMES 'utf8';
DROP TABLE IF EXISTS `cache_report_status`;
CREATE TABLE `cache_report_status` (
`id` tinyint(3) unsigned NOT NULL auto_increment,
`name` varchar(80) NOT NULL,
`trans_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='static content' ;