Fixes a typo in upgrade_20210201.sql (#5729)

* Adds missing "into" statement.
Thanks to @mazvi!
This commit is contained in:
mazvi 2021-02-04 22:55:36 +07:00 committed by GitHub
parent af274edda8
commit e78f6ae596
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1 +1 @@
INSERT IGNORE `sc_data` (`account_id`, `char_id`, `type`, `tick`) SELECT `account_id`, `char_id`, '752', '-1' FROM `char` WHERE `option` & '4194304' != '0';
INSERT IGNORE INTO `sc_data` (`account_id`, `char_id`, `type`, `tick`) SELECT `account_id`, `char_id`, '752', '-1' FROM `char` WHERE `option` & '4194304' != '0';