chore: rename text column

This commit is contained in:
Yaros
2026-04-22 19:06:44 +02:00
parent 6b908b28b6
commit 882d315fb0
5 changed files with 36 additions and 34 deletions
@@ -24,7 +24,7 @@ class AssetOcrEntity extends Table with DriftDefaultsMixin {
RealColumn get boxScore => real()();
RealColumn get textScore => real()();
TextColumn get recognizedText => text().named('text')();
TextColumn get recognizedText => text()();
BoolColumn get isVisible => boolean().withDefault(const Constant(true))();