12 lines
364 B
MySQL
12 lines
364 B
MySQL
|
|
-- 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";
|