Skip to content

Instantly share code, notes, and snippets.

@dcblogdev
Created May 27, 2020 12:58
Show Gist options
  • Save dcblogdev/9fc0d2e63e8b7550e5eea886bdfa7754 to your computer and use it in GitHub Desktop.
Save dcblogdev/9fc0d2e63e8b7550e5eea886bdfa7754 to your computer and use it in GitHub Desktop.
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