Skip to content

Instantly share code, notes, and snippets.

@itsgitz
Last active October 3, 2022 03:46
Show Gist options
  • Save itsgitz/4653491aa53747a0982ce6b781259514 to your computer and use it in GitHub Desktop.
Save itsgitz/4653491aa53747a0982ce6b781259514 to your computer and use it in GitHub Desktop.
Create table query for modul 3
CREATE TABLE IF NOT EXISTS users (
id serial PRIMARY KEY,
username VARCHAR(50) NOT NULL,
password VARCHAR(50) NOT NULL
)
CREATE TABLE IF NOT EXISTS notes (
id serial PRIMARY KEY,
title VARCHAR(50) NOT NULL,
notes TEXT NOT NULL,
file TEXT NULL
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment