Files
2026-03-17 09:10:25 -05:00

11 lines
385 B
SQL

-- PostgreSQL initialization script.
-- Runs ONCE on first container start when the data volume is empty.
-- Add schema, extensions, and seed data here.
-- Enable useful extensions
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
CREATE EXTENSION IF NOT EXISTS "pg_trgm";
-- Ignition stores its own schema; this file is for project-specific tables.
-- Add project tables below this line.