mirror of
https://github.com/openvk/openvk
synced 2024-12-23 17:12:01 +03:00
Create 00038-blacklist.sql
This commit is contained in:
parent
29f482419c
commit
7b912b480d
1 changed files with 7 additions and 0 deletions
7
install/sqls/00038-blacklist.sql
Normal file
7
install/sqls/00038-blacklist.sql
Normal 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;
|
Loading…
Reference in a new issue