Moved crest data to SQL.

This commit is contained in:
MobiusDevelopment
2021-05-29 01:04:55 +00:00
parent 24e82859ca
commit 22db860d42
44 changed files with 1322 additions and 1400 deletions

View File

@@ -0,0 +1,6 @@
CREATE TABLE IF NOT EXISTS `crests` (
`crest_id` INT,
`data` VARBINARY(2176) NOT NULL,
`type` TINYINT NOT NULL,
PRIMARY KEY(`crest_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;