mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-30 11:49:42 +02:00
8 lines
162 B
SQL
8 lines
162 B
SQL
CREATE TABLE IF NOT EXISTS notification
|
|
(
|
|
social_id VARCHAR(255) NOT NULL,
|
|
message_id INT8 NOT NULL,
|
|
|
|
PRIMARY KEY (social_id, message_id)
|
|
);
|