Skip to content

Commit 47759e7

Browse files
committed
revert to post columns as not null
1 parent c3541af commit 47759e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/PostLinks_pre.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ DROP TABLE IF EXISTS PostLinks CASCADE;
22
CREATE TABLE PostLinks (
33
Id int PRIMARY KEY ,
44
CreationDate timestamp not NUll ,
5-
PostId int , -- not NULL ,
6-
RelatedPostId int , -- not NULL ,
5+
PostId int not NULL ,
6+
RelatedPostId int not NULL ,
77
LinkTypeId int not Null ,
88
jsonfield jsonb
99
);

0 commit comments

Comments
 (0)