Skip to content

Instantly share code, notes, and snippets.

@ricardosiri68
Created October 18, 2013 20:17
Show Gist options
  • Select an option

  • Save ricardosiri68/7047594 to your computer and use it in GitHub Desktop.

Select an option

Save ricardosiri68/7047594 to your computer and use it in GitHub Desktop.
CREATE TABLE categorias
(
'id' INT(11) NOT NULL PRIMARY KEY AUTO_INCREMENT,
'parent_id' INT(11) NOT NULL REFERENCES categorias(id),
'nombre' VARCHAR(255) UNIQUE NOT NULL
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment