11 lines
385 B
SQL
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.
|