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

Commit

Permalink
fix(initial-setup): change comment limit to 500
Browse files Browse the repository at this point in the history
  • Loading branch information
jimcullenaus committed Oct 15, 2019
1 parent 586be31 commit 1480c65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/initial-setup/create_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CREATE TABLE pegs (
id SERIAL NOT NULL,
sender varchar(255) REFERENCES pockyusers(userid),
receiver varchar(255) REFERENCES pockyusers(userid),
comment varchar(255) NULL,
comment varchar(500) NULL,
PRIMARY KEY (id)
);

Expand Down

0 comments on commit 1480c65

Please sign in to comment.