mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 10:14:53 -05:00
8 lines
197 B
SQL
8 lines
197 B
SQL
BEGIN TRANSACTION;
|
|
|
|
CREATE INDEX trans_category_date ON transactions(category, date);
|
|
CREATE INDEX trans_category ON transactions(category);
|
|
CREATE INDEX trans_date ON transactions(date);
|
|
|
|
COMMIT;
|