mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 12:43:09 -05:00
11 lines
244 B
SQL
11 lines
244 B
SQL
BEGIN TRANSACTION;
|
|
|
|
CREATE TABLE __meta__ (key TEXT PRIMARY KEY, value TEXT);
|
|
|
|
DROP VIEW IF EXISTS v_transactions_layer2;
|
|
DROP VIEW IF EXISTS v_transactions_layer1;
|
|
DROP VIEW IF EXISTS v_transactions;
|
|
DROP VIEW IF EXISTS v_categories;
|
|
|
|
COMMIT;
|