openvk/install/sqls/00038-blacklist.sql

8 lines
234 B
MySQL
Raw Normal View History

2023-07-02 19:07:51 +03:00
CREATE TABLE `blacklists` (
`index` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
`author` BIGINT UNSIGNED NOT NULL,
`target` BIGINT UNSIGNED NOT NULL,
2023-07-20 02:35:09 +03:00
`created` BIGINT UNSIGNED NOT NULL,
2023-07-02 19:07:51 +03:00
PRIMARY KEY (`index`)
) ENGINE = InnoDB;