🐛 fix sync: add back 'accounts.type' column (#1317)

Closes #1296

After this is merged I'll do an API release which will also solve
https://github.com/actualbudget/actual/issues/1303
This commit is contained in:
Matiss Janis Aboltins
2023-07-09 16:13:30 +01:00
committed by GitHub
parent d6cb8674f7
commit 91474f1f0c
3 changed files with 12 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@actual-app/api",
"version": "6.1.0",
"version": "6.1.1",
"license": "MIT",
"description": "An API for Actual",
"main": "dist/index.js",

View File

@@ -0,0 +1,5 @@
BEGIN TRANSACTION;
ALTER TABLE accounts ADD COLUMN type TEXT;
COMMIT;

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [MatissJanis]
---
Fix sync: add back account type column