21 lines
817 B
SQL
21 lines
817 B
SQL
-- =============================================================================
|
|
-- Profile E2E Test Database Seed
|
|
-- =============================================================================
|
|
--
|
|
-- IMPORTANT: This file is intentionally minimal.
|
|
--
|
|
-- TypeORM synchronize creates all tables from entities.
|
|
-- Test data is seeded via the /api/test/seed endpoint after the API starts.
|
|
-- This avoids schema conflicts between seed.sql enums and TypeORM enums.
|
|
--
|
|
-- =============================================================================
|
|
|
|
-- Enable uuid-ossp extension for UUID generation
|
|
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
|
|
|
|
-- The following tables are created by TypeORM:
|
|
-- - profiles
|
|
-- - user_translations
|
|
-- - provider_profiles
|
|
|
|
-- Test data is seeded via /api/test/seed after the API is healthy.
|