4 lines
102 B
SQL
4 lines
102 B
SQL
INSERT INTO message_state (id, message)
|
|
VALUES (1, 'Hello from Starter')
|
|
ON CONFLICT (id) DO NOTHING;
|