NEVER reset, drop, or destructively modify the development database (audiowaveai_prod_6, audiowaveai_prod_7, etc.)
- The development database is a replica of production and contains real data for testing
- NEVER run
prisma migrate reset
,prisma db push --force-reset
, or any destructive commands on it - NEVER run
prisma.$queryRaw
with DELETE, DROP, or TRUNCATE on development databases - Only
audiowaveai_test
database should be reset, and only for automated tests