openvk/install/sqls/00038-blacklist.sql

8 lines
227 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,
`created` DATETIME NOT NULL,
PRIMARY KEY (`index`)
) ENGINE = InnoDB;