Added course->timecreated

This commit is contained in:
martin 2002-06-10 11:34:31 +00:00
parent e452ca303f
commit f13b00d318

View File

@ -27,6 +27,7 @@ CREATE TABLE `course` (
`guest` tinyint(1) unsigned NOT NULL default '0',
`startdate` int(10) unsigned NOT NULL default '0',
`enddate` int(10) unsigned NOT NULL default '0',
`timecreated` int(10) unsigned NOT NULL default '0',
`timemodified` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`id`)
) TYPE=MyISAM;