10 lines
346 B
SQL
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
|