Design and manage databases including tables, migrations, and schema structure. Use for backend and full-stack projects.
Schema design
Tables creation
Migrations
Indexes & performance
-- users table
CREATE TABLE users (
id SERIAL PRIMARY KEY,
name VARCHAR(100) NOT NULL,
email VARCHAR(150) UNIQUE NOT NULL,
password TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);