Skip to content
This repository has been archived by the owner on May 22, 2023. It is now read-only.

Commit

Permalink
rolling back change for #4
Browse files Browse the repository at this point in the history
  • Loading branch information
timveil committed May 15, 2020
1 parent a8227dd commit 16c9f4b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ DROP TABLE IF EXISTS category CASCADE;
CREATE TABLE category (
c_id BIGINT NOT NULL,
c_name VARCHAR(50),
c_parent_id BIGINT,
c_parent_id BIGINT REFERENCES category (c_id),
PRIMARY KEY (c_id)
);
CREATE INDEX IDX_CATEGORY_PARENT ON category (c_parent_id);
Expand Down

0 comments on commit 16c9f4b

Please sign in to comment.