platform-codebase/features/profile/e2e/seed.sql

22 lines
817 B
MySQL
Raw Permalink Normal View History

-- =============================================================================
-- 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.