mirror of
https://github.com/openvk/openvk
synced 2025-01-11 18:43:00 +03:00
7 lines
243 B
SQL
7 lines
243 B
SQL
CREATE TABLE `blacklist_relations` (
|
|
`index` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
|
|
`author` BIGINT UNSIGNED NOT NULL,
|
|
`target` BIGINT UNSIGNED NOT NULL,
|
|
`created` BIGINT UNSIGNED NOT NULL,
|
|
PRIMARY KEY (`index`)
|
|
) ENGINE = InnoDB;
|