Created
May 27, 2020 12:58
-
-
Save dcblogdev/9fc0d2e63e8b7550e5eea886bdfa7754 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 `categories` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`parent_id` int(11) NOT NULL DEFAULT '0', | |
`category` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment