-- Test migration to create experiment_phases table CREATE TABLE IF NOT EXISTS public.experiment_phases ( id UUID PRIMARY KEY DEFAULT uuid_generate_v4(), name TEXT NOT NULL UNIQUE, description TEXT, created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), updated_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), created_by UUID NOT NULL ); -- Insert test data INSERT INTO public.experiment_phases (name, description, created_by) VALUES ('Phase 2 of JC Experiments', 'Second phase of JC Cracker experiments', '00000000-0000-0000-0000-000000000000') ON CONFLICT (name) DO NOTHING;