Remove TODO to use a single database since using multiple ones simplifies schema upgrades

This commit is contained in:
Vishnu Mohandas 2020-07-20 17:21:41 +05:30
parent 275f5d003f
commit cbb0a88a07
2 changed files with 0 additions and 2 deletions

View file

@ -9,7 +9,6 @@ import 'package:sqflite/sqflite.dart';
import 'package:path_provider/path_provider.dart';
class FilesDB {
// TODO: Use different tables within the same database
static final _databaseName = "ente.files.db";
static final _databaseVersion = 1;

View file

@ -7,7 +7,6 @@ import 'package:sqflite/sqflite.dart';
import 'package:path_provider/path_provider.dart';
class FoldersDB {
// TODO: Use different tables within the same database
static final _databaseName = "ente.folder.db";
static final _databaseVersion = 1;