This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SET FOREIGN_KEY_CHECKS=0; | |
-- ---------------------------- | |
-- Table structure for base64_data | |
-- ---------------------------- | |
DROP TABLE IF EXISTS `base64_data`; | |
CREATE TABLE `base64_data` ( | |
`c` char(1) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, | |
`val` tinyint(4) DEFAULT NULL | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8; |