Add comments for some news

This commit is contained in:
Lucian Popescu 2022-05-21 11:49:25 +03:00
parent a9e67890ab
commit 78660a386a
1 changed files with 51 additions and 0 deletions

View File

@ -183,3 +183,54 @@ VALUES
'lucian.popescu187@gmail.com',
'I assume it is possible to develop tools that would help coordinating some efforts, sharing some specific types of information more efficiently. I cannott promise I will manage to devote myself to this, but I would like to try, or at least spark a discussion.'
);
-- Add comments
INSERT INTO
COMMENTS
(ts, content, author, news_id)
VALUES
(NOW(),
'Interesting map, thanks for sharing!',
'Bianca Fodor',
1
);
INSERT INTO
COMMENTS
(ts, content, author, news_id)
VALUES
(NOW(),
'I never thought that there could be such a difference between the content in the two countries!',
'Bianca Fodor',
2
);
INSERT INTO
COMMENTS
(ts, content, author, news_id)
VALUES
(NOW(),
'This feels unreal!',
'John Doe',
2
);
INSERT INTO
COMMENTS
(ts, content, author, news_id)
VALUES
(NOW(),
'Nice to learn something new!',
'Ion Popescu',
2
);
INSERT INTO
COMMENTS
(ts, content, author, news_id)
VALUES
(NOW(),
'I wonder what impact does this move have on the relations between Ukraine and the other UE countries.',
'Bianca Fodor',
3
);