Sha256: 9eb245b2ae91b8d4bd7a99c8f6d23f523e3e4b19ef84beb189302efc894ac321
Contents?: true
Size: 728 Bytes
Versions: 1
Compression:
Stored size: 728 Bytes
Contents
Sequel.migration do up do run "CREATE TABLE `runners` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `extension_id` int(11) unsigned NOT NULL, `name` varchar(256) NOT NULL DEFAULT '', `namespace` varchar(256) NOT NULL DEFAULT '', `active` tinyint(1) unsigned NOT NULL DEFAULT '1', `queue` varchar(256) DEFAULT NULL, `uri` varchar(256) DEFAULT NULL, `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), CONSTRAINT `runner_extension_id` FOREIGN KEY (`extension_id`) REFERENCES `extensions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8;" end down do drop :runners end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
legion-data-0.2.0 | lib/legion/data/migrations/010_add_runners.rb |