Update migrate.sql

This commit is contained in:
Junseo Park 2020-09-07 15:35:31 +09:00 committed by GitHub
parent a924d04ba5
commit 3afd3899bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,3 +43,6 @@ CREATE TABLE `submits` (
`state` int(1) NOT NULL DEFAULT 0,
`reason` tinytext COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
-- FULLTEXT INDEX
ALTER TABLE `bots` ADD FULLTEXT(`name`, `desc`, `intro`);