qt-chat-app

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

U1766663112__create_table_message.sql (157B)


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