Skip to content

Commit

Permalink
bugfix: fixed pgsql full db schema (inreply to should be null by defa…
Browse files Browse the repository at this point in the history
…ult - fixes LMS+ chilek#466)
  • Loading branch information
chilek committed Jan 17, 2018
1 parent fb0ac1b commit 54f19f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/lms.pgsql
Original file line number Diff line number Diff line change
Expand Up @@ -1694,7 +1694,7 @@ CREATE TABLE rtmessages (
mailfrom varchar(255) DEFAULT '' NOT NULL,
subject varchar(255) DEFAULT '' NOT NULL,
messageid varchar(255) DEFAULT '' NOT NULL,
inreplyto integer DEFAULT 0 NOT NULL
inreplyto integer DEFAULT NULL
CONSTRAINT rtmessages_inreplyto_fkey REFERENCES rtmessages (id) ON DELETE SET NULL ON UPDATE CASCADE,
replyto text DEFAULT '' NOT NULL,
headers text DEFAULT '' NOT NULL,
Expand Down

0 comments on commit 54f19f0

Please sign in to comment.