Skip to content

Instantly share code, notes, and snippets.

View novaladip's full-sized avatar
🔥
Focusing

A. Noval Adip novaladip

🔥
Focusing
View GitHub Profile
-- code for https://youtu.be/tp_5c6jaNQE
create table users (
id serial primary key,
first_name varchar(255) not null,
last_name text,
age int,
email text unique not null
);