bookwiz.io / supabase / seed / seed.sql
seed.sql
Raw
-- Seed file for development data
-- This file contains sample data for local development

-- Example: Insert some sample profiles (these would normally be created by the auth triggers)
-- Note: In real usage, these would be created automatically when users sign up

-- You can add sample data here for testing your application
-- For example:

-- insert into public.profiles (id, email, full_name, avatar_url) 
-- values (
--   gen_random_uuid(),
--   'test@example.com',
--   'Test User',
--   'https://avatars.githubusercontent.com/u/1?v=4'
-- );

-- Add any other seed data your application needs for development