v7 was created by restoring v3
I found the issue! The seed data script is trying to insert user_metadata into auth.users, but that column doesn't exist in Supabase's built-in auth schema. The user_metadata is handled differently in Supabase - it's managed through the auth API, not direct SQL inserts. Let me fix the seed data script:
Fixed! The issue was that the seed script was trying to insert into auth.users with a user_metadata column, which doesn't exist in Supabase's authentication schema. I removed those direct auth inserts - Supabase auth users should be created through the Auth API during sign-up. The users table records are still created for the demo accounts, which will sync when the demo users actually sign up with those credentials.