2024-07-09 17:06:20 +00:00
|
|
|
-- This file should undo anything in `up.sql`
|
|
|
|
|
-- This file should undo anything in `up.sql`
|
|
|
|
|
DROP TABLE IF EXISTS "categories";
|
|
|
|
|
DROP TABLE IF EXISTS "tags";
|
|
|
|
|
DROP TABLE IF EXISTS "books";
|
|
|
|
|
DROP TABLE IF EXISTS "transactions";
|
|
|
|
|
DROP TABLE IF EXISTS "transaction_tag_rels";
|
|
|
|
|
DROP TABLE IF EXISTS "accounts";
|
|
|
|
|
DROP TABLE IF EXISTS "amounts";
|
|
|
|
|
DROP TABLE IF EXISTS "users";
|
2024-11-05 00:19:27 +08:00
|
|
|
DROP TABLE IF EXISTS "operations";
|
2024-11-24 11:29:18 +08:00
|
|
|
DROP TABLE IF EXISTS "operation_snapshots";
|