qt-chat-app

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

U1766701521__update.sql (112B)


      1 CREATE VIEW user_profile AS
      2 SELECT P.*, U.email
      3 FROM _user AS U
      4 INNER JOIN profile AS P
      5   ON U.id = P._user_id;