From: martin Date: Mon, 10 Jun 2002 11:34:31 +0000 (+0000) Subject: Added course->timecreated X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=f13b00d318fda851e75e9c3d0c4999b9c09a3c58;p=moodle.git Added course->timecreated --- diff --git a/lib/db/mysql.sql b/lib/db/mysql.sql index efb3aa403a..383e4dcbfd 100644 --- a/lib/db/mysql.sql +++ b/lib/db/mysql.sql @@ -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;