You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
db-schema/db_scripts/diff/15077.up

14 lines
435 B

use accounting;
CREATE TABLE `events` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(255) NOT NULL,
`subscriber_id` int(11) unsigned NOT NULL,
`old_status` varchar(255) DEFAULT NULL,
`new_status` varchar(255) NOT NULL,
`timestamp` decimal(13,3) NOT NULL,
`export_status` enum('unexported','ok','failed') DEFAULT 'unexported',
`exported_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;