mirror of
https://github.com/openvk/openvk
synced 2024-11-15 11:39:13 +03:00
8 lines
227 B
MySQL
8 lines
227 B
MySQL
|
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;
|