mirror of
https://github.com/idrainformatica/PecFlow.git
synced 2026-06-16 20:55:41 +02:00
9 lines
318 B
SQL
9 lines
318 B
SQL
-- Estensioni PostgreSQL richieste da PEChub
|
|
-- Questo script viene eseguito automaticamente da Docker al primo avvio
|
|
|
|
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
|
|
CREATE EXTENSION IF NOT EXISTS "pgcrypto";
|
|
|
|
-- Permette SET LOCAL per RLS (app.current_tenant_id)
|
|
ALTER DATABASE pechub SET "app.current_tenant_id" TO '';
|