platform-codebase/features/marketplace/e2e/seed.sql
2026-01-18 09:21:09 -08:00

11 lines
447 B
SQL
Executable file

-- Marketplace E2E Test Seed Data
-- This file initializes the database with test data for E2E tests.
-- Note: TypeORM will create tables automatically with DATABASE_SYNCHRONIZE=true
-- This file just seeds initial test data for the E2E tests.
-- Create extensions if needed
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
-- Placeholder: Add seed data once schema is established
-- The actual tables are created by TypeORM entities in the backend