Skip to content

Instantly share code, notes, and snippets.

@davletyarov
Created May 24, 2019 16:15
Show Gist options
  • Save davletyarov/2b6b12f9fbaed18b87c525cc99ea70b7 to your computer and use it in GitHub Desktop.
Save davletyarov/2b6b12f9fbaed18b87c525cc99ea70b7 to your computer and use it in GitHub Desktop.
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