Created
May 24, 2019 16:15
-
-
Save davletyarov/2b6b12f9fbaed18b87c525cc99ea70b7 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 category ( | |
id INTEGER NOT NULL PRIMARY KEY, | |
parent_category_id INTEGER REFERENCES category(id), | |
name VARCHAR(100) NOT NULL | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment