template-saas-database-v2/ddl/00-extensions.sql
rckrdmrd 3ce06fbce4 Initial commit - Database de template-saas migrado desde monorepo
Migración desde workspace-v2/projects/template-saas/apps/database
Este repositorio es parte del estándar multi-repo v2

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 08:07:11 -06:00

23 lines
656 B
SQL

-- ============================================
-- TEMPLATE-SAAS: Extensions
-- Version: 1.0.0
-- ============================================
-- UUID generation
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
CREATE EXTENSION IF NOT EXISTS "pgcrypto";
-- Full text search
CREATE EXTENSION IF NOT EXISTS "pg_trgm";
-- JSON operations
CREATE EXTENSION IF NOT EXISTS "btree_gin";
-- Timestamps and dates
CREATE EXTENSION IF NOT EXISTS "btree_gist";
-- Comment
COMMENT ON EXTENSION "uuid-ossp" IS 'UUID generation functions';
COMMENT ON EXTENSION "pgcrypto" IS 'Cryptographic functions';
COMMENT ON EXTENSION "pg_trgm" IS 'Trigram matching for text search';