This commit is contained in:
lama137
2023-09-28 09:02:52 +02:00
parent 4c4dcc2654
commit 2f851bc630
7 changed files with 19 additions and 17 deletions

View File

@@ -7,12 +7,6 @@ class Database{
Database._init();
Future<Database> get database async {
if (_database != null) return _database!;
_database = await _initDB('database.db');
return _database!;
}
Future _createDB(Database database) async{
const integerPrimaryKeyAutoincrement = 'INTEGER PRIMARY KEY AUTOINCREMENT';