qt-chat-app

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

U1766766830__update.sql (130B)


      1 CREATE VIEW profile_chats AS
      2 SELECT cp.profile_id, c.*
      3 FROM chat AS c
      4 INNER JOIN chat_participation AS cp
      5   ON cp.chat_id = c.id;