Browse Source
Merge branch 'main' into feature/extend-self-hosting-faq
pull/3068/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
4 additions and
0 deletions
-
CHANGELOG.md
-
prisma/migrations/20240229191929_added_index_for_is_excluded_to_account/migration.sql
-
prisma/schema.prisma
|
|
@ -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 |
|
|
|
|
|
@ -0,0 +1,2 @@ |
|
|
|
-- CreateIndex |
|
|
|
CREATE INDEX "Account_isExcluded_idx" ON "Account"("isExcluded"); |
|
|
@ -44,6 +44,7 @@ model Account { |
|
|
|
@@id([id, userId]) |
|
|
|
@@index([currency]) |
|
|
|
@@index([id]) |
|
|
|
@@index([isExcluded]) |
|
|
|
@@index([name]) |
|
|
|
@@index([userId]) |
|
|
|
} |
|
|
|