mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-23 10:05:01 +02:00
10 lines
266 B
SQL
10 lines
266 B
SQL
CREATE TABLE IF NOT EXISTS notification
|
|
(
|
|
social_id VARCHAR(255) NOT NULL,
|
|
message_id INT8 NOT NULL,
|
|
|
|
read BOOLEAN NOT NULL DEFAULT false,
|
|
archived BOOLEAN NOT NULL DEFAULT false,
|
|
|
|
PRIMARY KEY (social_id, message_id)
|
|
); |