Files
FE_Charts/server/scripts/Tbl_Character_Class.sql
dario-cfpt 4c88ce85dd Fix available classes verification for characters
After the changes of the server, the ids are now returned as string
instead of id. So we needed a more explicit verification in some of
the javascript tests.

Also added a missing class in Tbl_Character_Class table and a script
will all data.
2020-03-11 11:03:08 +01:00

28 lines
688 B
SQL

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
INSERT INTO `Tbl_Character_Class` (`Id_Class`, `Id_Character`) VALUES
(7, 3),
(7, 11),
(7, 19),
(32, 1),
(32, 2),
(33, 3),
(34, 11),
(35, 19),
(36, 3),
(37, 11),
(38, 19);
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;