Skip to content

Instantly share code, notes, and snippets.

View najathi's full-sized avatar
💻
Developing

Najathi najathi

💻
Developing
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
);