postgresql
Installation
SKILL.md
PostgreSQL Core Knowledge
Deep Knowledge: Use
mcp__documentation__fetch_docswith technology:postgresqlfor comprehensive documentation.
Table Definition
CREATE TABLE users (
id SERIAL PRIMARY KEY,
name VARCHAR(100) NOT NULL,
email VARCHAR(255) UNIQUE NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
is_active BOOLEAN DEFAULT TRUE
);
CREATE INDEX idx_users_email ON users(email);
CREATE INDEX idx_users_created ON users(created_at DESC);