weizhouapache commented on PR #10018:
URL: https://github.com/apache/cloudstack/pull/10018#issuecomment-2511343234
double-checked the database, looks ok
```
mysql> select * from version;
...
| 45 | 4.20.0.0 | 2024-12-02 10:04:53 | Complete |
| 46 | 4.20.1.0 | 2024-12-02 10:04:53 | Complete |
+----+----------+---------------------+----------+
mysql> show create table mshost_peer;
...
| mshost_peer | CREATE TABLE `mshost_peer` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`owner_mshost` bigint unsigned NOT NULL,
`peer_mshost` bigint unsigned NOT NULL,
`peer_runid` bigint NOT NULL,
`peer_state` varchar(10) NOT NULL DEFAULT 'Down',
`last_update` datetime DEFAULT NULL COMMENT 'Last record update time',
PRIMARY KEY (`id`),
UNIQUE KEY `i_mshost_peer__owner_peer` (`owner_mshost`,`peer_mshost`),
KEY `fk_mshost_peer__peer_mshost` (`peer_mshost`),
CONSTRAINT `fk_mshost_peer__owner_mshost` FOREIGN KEY (`owner_mshost`)
REFERENCES `mshost` (`id`) ON DELETE CASCADE,
CONSTRAINT `fk_mshost_peer__peer_mshost` FOREIGN KEY (`peer_mshost`)
REFERENCES `mshost` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 |
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]