This is an old revision of the document!
Changes:
New Pages:
Minor changes to css/style.css
Usage:
Table for users notes.
CREATE TABLE IF NOT EXISTS `site_users_notes` ( `id` double NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `comment` text NOT NULL, `comment_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `comment_by` int(11) NOT NULL, `type_id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Usage:
Table for users work date.
CREATE TABLE IF NOT EXISTS `site_users_ext` ( `user_id` double NOT NULL, PRIMARY KEY (`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
New Pages: