mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-02 23:03:57 +08:00
6 lines
217 B
MySQL
6 lines
217 B
MySQL
|
|
-- Drop workspace_files table first (due to foreign key dependency)
|
||
|
|
DROP TABLE IF EXISTS workspace_files CASCADE;
|
||
|
|
|
||
|
|
-- Drop workspaces table and all its constraints and indexes
|
||
|
|
DROP TABLE IF EXISTS workspaces CASCADE;
|