This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Annotations specifc changes following | |
| CREATE TABLE IF NOT EXISTS `cloud`.`annotations` ( | |
| `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
| `uuid` varchar(40) UNIQUE, | |
| `annotation` text, | |
| `entity_uuid` varchar(40), | |
| `entity_type` varchar(32), | |
| `user_uuid` varchar(40), | |
| `created` datetime COMMENT 'date of creation', |