PHP Classes

File: db.sql

Recommend this page to a friend!
  Classes of Oliver Leuyim Angel   PHP Cron Admin   db.sql   Download  
File: db.sql
Role: Auxiliary data
Content type: text/plain
Description: estructure for the mysql table
Class: PHP Cron Admin
Schedule jobs stored in files and MySQL
Author: By
Last change:
Date: 10 years ago
Size: 543 bytes
 

Contents

Class file image Download
-- -- Estructura de tabla para la tabla `prefix_crontab` -- CREATE TABLE IF NOT EXISTS `prefix_crontab` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL DEFAULT '', `command` longtext NOT NULL, `minute` varchar(250) NOT NULL DEFAULT '0', `hour` varchar(250) NOT NULL DEFAULT '0', `day` varchar(250) NOT NULL DEFAULT '0', `month` varchar(250) NOT NULL DEFAULT '0', `dayofweek` varchar(250) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;