mirror of
https://github.com/diangogav/EDOpro-server-ts
synced 2026-08-24 00:23:05 -04:00
- Updated docker-compose.yaml to version 3.8, modified postgres service to use alpine image. - Removed Dockerfile.dev as it is no longer needed. - Added init.sql for database initialization with UUID extension and timezone configuration.
6 lines
No EOL
187 B
SQL
6 lines
No EOL
187 B
SQL
-- Habilitar extensión para UUIDs
|
|
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
|
|
|
|
-- Configuraciones adicionales si son necesarias
|
|
-- Por ejemplo, configurar timezone
|
|
SET timezone = 'UTC'; |