I wrote about the "pattern of judgment" regarding how I used Claude Code to migrate the Oracle logging framework log_set_oracle (MIT license) to PostgreSQL and how I designed the verification process.
-- Antes de empezar con los ejercicios, inspeccionamos las tablas disponibles y sus columnas. -- En SQL esto se hace consultando el catálogo del sistema: information_schema. -- Equivalente al ...
ALTER DEFAULT PRIVILEGES FOR ROLE postgres IN SCHEMA public GRANT DELETE, INSERT, SELECT, UPDATE ON TABLES TO anon; ALTER DEFAULT PRIVILEGES FOR ROLE postgres IN SCHEMA public GRANT SELECT, USAGE ON ...