* Added new column to transactions table (`007_transactions.sql`) * Added setArchived method to mark old transactions as archived * Honor archived flag in getBalance and getLockedBalance This will further address and fix #536 once merged.
2 lines
96 B
SQL
2 lines
96 B
SQL
ALTER TABLE `transactions` ADD `archived` BOOLEAN NOT NULL DEFAULT FALSE AFTER `timestamp` ;
|