From 2c241d9113cf3e544b2539d1ecf9ad223ad3d23e Mon Sep 17 00:00:00 2001 From: Hyperling Date: Fri, 21 Mar 2025 10:53:48 -0700 Subject: [PATCH] Change database file name to be more user-friendly. --- lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index 73c70c3..7ed60ae 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -27,7 +27,7 @@ void main() { if (testing) { () async { Directory documentsDirectory = await getApplicationDocumentsDirectory(); - String path = join(documentsDirectory.path, 'com_hyperling_expense.db'); + String path = join(documentsDirectory.path, 'ExpenseTracker.sqlite.db'); await deleteDatabase(path); }(); }