Browse Source

Merge branch 'main' into feature/extend-self-hosting-faq

pull/3068/head
Thomas Kaul 2 years ago
committed by GitHub
parent
commit
280e3329a0
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 2
      prisma/migrations/20240229191929_added_index_for_is_excluded_to_account/migration.sql
  3. 1
      prisma/schema.prisma

1
CHANGELOG.md

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Added an index for `isExcluded` to the account database table
- Extended the content of the _Self-Hosting_ section on the Frequently Asked Questions (FAQ) page
### Changed

2
prisma/migrations/20240229191929_added_index_for_is_excluded_to_account/migration.sql

@ -0,0 +1,2 @@
-- CreateIndex
CREATE INDEX "Account_isExcluded_idx" ON "Account"("isExcluded");

1
prisma/schema.prisma

@ -44,6 +44,7 @@ model Account {
@@id([id, userId])
@@index([currency])
@@index([id])
@@index([isExcluded])
@@index([name])
@@index([userId])
}

Loading…
Cancel
Save