/[drupal]/contributions/modules/dbcron/dbcron.mysql
ViewVC logotype

Contents of /contributions/modules/dbcron/dbcron.mysql

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download)
Sun Jan 22 06:18:01 2006 UTC (3 years, 10 months ago) by jaza
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +1 -1 lines
- 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