Fix the type of owner_id in collections table

This commit is contained in:
Vishnu Mohandas 2020-10-13 02:05:04 +05:30
parent 959f6cd27e
commit 76eb21350f

View file

@ -45,7 +45,7 @@ class CollectionsDB {
await db.execute('''
CREATE TABLE $table (
$columnID INTEGER PRIMARY KEY NOT NULL,
$columnOwnerID TEXT NOT NULL,
$columnOwnerID INTEGER NOT NULL,
$columnEncryptedKey TEXT NOT NULL,
$columnKeyDecryptionNonce TEXT NOT NULL,
$columnName TEXT NOT NULL,