Parent Directory
|
Revision Log
|
Revision Graph
- Updated DB Cron schema to support UTF-8 changes. - Updates category and related modules to support UTF-8 changes. - Changed primary key fields in category_legacy DB table.
| 1 | -- |
| 2 | -- Table structure for table 'dbcron' |
| 3 | -- |
| 4 | |
| 5 | CREATE TABLE dbcron ( |
| 6 | dqid int(10) unsigned NOT NULL auto_increment, |
| 7 | title varchar(128) NOT NULL default '', |
| 8 | body longtext NOT NULL default '', |
| 9 | run_interval int(11) NOT NULL default 0, |
| 10 | last_run int(11) NOT NULL default 0, |
| 11 | exec_speed int(11) NOT NULL default 0, |
| 12 | PRIMARY KEY (dqid), |
| 13 | UNIQUE KEY title (title), |
| 14 | KEY run_interval (run_interval) |
| 15 | ) TYPE=MyISAM /*!40100 DEFAULT CHARACTER SET utf8 */; |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |