📄️ CREATE DATABASE
Manage PostgreSQL database creation with safe DDL workflows, ownership/encoding choices, and production safeguards. Focus: CREATE DATABASE.
📄️ DROP DATABASE
Remove PostgreSQL databases safely with dependency awareness, active-connection handling, and production safeguards. Focus: DROP DATABASE.
📄️ CREATE TABLE
Create PostgreSQL tables with modern identity columns, constraints, defaults, and migration-friendly DDL patterns. Focus: CREATE TABLE.
📄️ DROP TABLE
Drop PostgreSQL tables safely using IF EXISTS, understand CASCADE/RESTRICT behavior, and avoid destructive mistakes. Focus: DROP TABLE.
📄️ ALTER TABLE
Evolve PostgreSQL schemas with ALTER TABLE using migration-friendly patterns, lock awareness, and safe constraint rollout. Focus: ALTER TABLE.