Created
October 29, 2018 19:27
-
-
Save cjac/18b18815d9149b213b4630726d4ada21 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
$dbh->do("drop table if exists $test_table_name"); | |
my $create_query = qq{ | |
CREATE TABLE $test_table_name ( | |
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, | |
uchar VARCHAR(1), | |
uchar_text TEXT, | |
uchar_char CHAR(1), | |
code_value VARCHAR(6), | |
character_name VARCHAR(64) | |
) character set 'utf8mb4' collate 'utf8mb4_unicode_520_ci'; | |
}; | |
$dbh->do($create_query); |
Author
cjac
commented
Oct 29, 2018
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment