2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-27 23:18:40 +00:00
status-go/protocol/migrations/sqlite/1596805115_create_group_chat_invitations_table.up.sql
2020-09-07 12:15:58 +02:00

8 lines
231 B
SQL

CREATE TABLE IF NOT EXISTS group_chat_invitations (
id VARCHAR PRIMARY KEY ON CONFLICT REPLACE,
source TEXT NOT NULL,
chat_id VARCHAR NOT NULL,
message VARCHAR NOT NULL,
state INT DEFAULT 0,
clock INT NOT NULL
);