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