Skip to content

Commit

Permalink
use hashElements index for where clause
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptainDario committed May 29, 2023
1 parent 5c68048 commit 5131f22
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion database_builder/lib/src/krad/data_classes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Krad {
/// This entries radical character
@Index()
String character;
@Index()
@Index(type: IndexType.hashElements)
List<String> kanjis = <String>[];
/// The stroke count of this radical
@Index()
Expand Down
20 changes: 10 additions & 10 deletions database_builder/lib/src/krad/data_classes.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5131f22

Please sign in to comment.