Create 00038-blacklist.sql

This commit is contained in:
n1rwana 2023-07-02 19:07:51 +03:00 committed by GitHub
parent 29f482419c
commit 7b912b480d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,7 @@
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;