Skip to content

Instantly share code, notes, and snippets.

@radityopw
Created May 28, 2011 04:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radityopw/996596 to your computer and use it in GitHub Desktop.
Save radityopw/996596 to your computer and use it in GitHub Desktop.
multiple kategori table structure
CREATE TABLE IF NOT EXISTS `kategori` (
`id` bigint(255) NOT NULL AUTO_INCREMENT,
`nama` varchar(255) NOT NULL,
`parent_id` bigint(255) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment