qt-chat-app

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

U1766663059__create_table_chat_participation.sql (139B)


      1 CREATE TABLE "chat_participation" (
      2     'id' INTEGER PRIMARY KEY NOT NULL,
      3     'chat_id' INTEGER NOT NULL REFERENCES 'chat'('id')
      4 ) STRICT;