feat(*): Migrate from MongoDB to unified Supabase PostgreSQL architecture

This commit is contained in:
Josh Creek
2025-07-26 18:50:05 +01:00
parent 70f7bbdffc
commit bc9ce84615
20 changed files with 2413 additions and 269 deletions
+14
View File
@@ -0,0 +1,14 @@
-- Initial seed data for local development
-- This file is referenced in config.toml and will be loaded during db reset
-- Note: RLS is already enabled on auth.users by default in Supabase
-- No need to modify system tables here
-- Add any application-specific seed data here
-- For now, this file is minimal since we use MongoDB for app data
-- Example: If we had a profiles table, we could seed it here
-- INSERT INTO profiles (id, username) VALUES
-- ('test-user-id', 'testuser');
SELECT 'Local Supabase setup complete' as message;