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

Commit

Permalink
Merge pull request #238 from GlobalX/bugfix/increase-comment-size
Browse files Browse the repository at this point in the history
fix(initial-setup): change comment limit to 500
  • Loading branch information
jimcullenaus authored Oct 15, 2019
2 parents 586be31 + 1480c65 commit f439b0d
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 f439b0d

Please sign in to comment.