Created
February 14, 2016 03:05
-
-
Save badri/09ddad9e16276fca32b0 to your computer and use it in GitHub Desktop.
Table schema
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 genres ( | |
id serial NOT NULL PRIMARY KEY, | |
name character varying(255) NOT NULL, | |
parent_id integer REFERENCES genres (id) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment