Last active
March 25, 2020 12:23
-
-
Save ashour/7d1e8e01773cef5a0c014c1703701d2a 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
CREATE TABLE `articles_i18n_simple` ( | |
`id` int(11) unsigned NOT NULL AUTO_INCREMENT, | |
`published_at` datetime NOT NULL, | |
`title_en` varchar(2000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', | |
`title_fr` varchar(2000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', | |
`body_en` text COLLATE utf8mb4_unicode_ci, | |
`body_fr` text COLLATE utf8mb4_unicode_ci, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment