platform-codebase/features/profile/e2e/seed.sql
Lilith 92572d22a6 chore(src): 🔧 Update TypeScript files in src directory (8 files)
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-01-30 00:21:29 -08:00

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.