1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-migrations.git synced 2024-06-28 20:55:08 +03:00
kohana-migrations/views/minion/task/migrations/schema.php
pusherman f4db9da95e Update views/minion/task/migrations/schema.php
Removed short tags so code will not fail if short tags are disabled
2012-11-02 13:20:31 -03:00

9 lines
313 B
PHP

CREATE TABLE `<?php echo $table_name; ?>` (
`timestamp` varchar(14) NOT NULL,
`description` varchar(100) NOT NULL,
`group` varchar(100) NOT NULL,
`applied` tinyint(1) DEFAULT '0',
PRIMARY KEY (`timestamp`,`group`),
UNIQUE KEY `MIGRATION_ID` (`timestamp`,`description`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;