Skip to content

Instantly share code, notes, and snippets.

@tinwritescode
Created December 15, 2021 15:15
Show Gist options
  • Save tinwritescode/8bb931f3a05f5eead7c9335e60bf4967 to your computer and use it in GitHub Desktop.
Save tinwritescode/8bb931f3a05f5eead7c9335e60bf4967 to your computer and use it in GitHub Desktop.
chat.sql
CREATE TABLE users (id integer primary key autoincrement, username string unique, password string, email string unique)
CREATE TABLE messages (id integer primary key autoincrement, message string, time timestamp default current_timestamp not null, sender integer references users(id), receiver integer references users(id))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment