mirror of
https://github.com/openvk/openvk
synced 2024-11-15 19:49:14 +03:00
7 lines
258 B
MySQL
7 lines
258 B
MySQL
|
CREATE TABLE `ignored_sources` (
|
||
|
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
|
||
|
`owner` bigint(20) UNSIGNED NOT NULL,
|
||
|
`ignored_source` bigint(20) NOT NULL,
|
||
|
PRIMARY KEY (`id`)
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|