Skip to content

Instantly share code, notes, and snippets.

@CodebyOmar
Created February 4, 2019 12:14
Show Gist options
  • Save CodebyOmar/533a053f28b37322ac37213046b074e1 to your computer and use it in GitHub Desktop.
Save CodebyOmar/533a053f28b37322ac37213046b074e1 to your computer and use it in GitHub Desktop.
user_rooms (
    id SERIAL NOT NULL PRIMARY KEY
    user_id INT FOREIGN KEY REFERENCES user(username) NOT NULL
    room_id INT FOREIGN KEY REFERENCES room(id) NOT NULL
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment