Files
web-hosts/domains/coppertone.tech/backend/migrations/005_schema_separation.down.sql
2025-12-26 13:38:04 +01:00

10 lines
346 B
SQL

-- Migration 005: Rollback Schema Separation
-- WARNING: This will drop all environment-specific schemas and their data!
-- Drop schemas (CASCADE will drop all objects within them)
DROP SCHEMA IF EXISTS dev CASCADE;
DROP SCHEMA IF EXISTS testing CASCADE;
DROP SCHEMA IF EXISTS prod CASCADE;
-- Note: Data in the public schema remains untouched