2020-01-30 10:03:10,896 DEBUG MySQL|company_db_2061|task Applying: CREATE TABLE `revenue_payments` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`subscription_id` int(11) unsigned DEFAULT NULL,
`price` double NOT NULL DEFAULT '0',
`due_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`revenue_movement_type` int(11) unsigned NOT NULL,
`payment_type` int(11) unsigned NOT NULL,
`description` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `revenue_movement_type` (`revenue_movement_type`),
KEY `payment_type` (`payment_type`),
CONSTRAINT `revenue_payments_ibfk_1` FOREIGN KEY (`revenue_movement_type`) REFERENCES `revenue_movement_types` (`id`),
CONSTRAINT `revenue_payments_ibfk_2` FOREIGN KEY (`payment_type`) REFERENCES `payment_types` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci [io.debezium.relational.history.KafkaDatabaseHistory]