[Store] Add missing comma
This commit is contained in:
parent
0fb76874e6
commit
14b89263b7
|
@ -624,16 +624,19 @@ class Store {
|
||||||
}
|
}
|
||||||
|
|
||||||
Future forgetNotification(String roomID) async {
|
Future forgetNotification(String roomID) async {
|
||||||
await db.rawDelete("DELETE FROM NotificationsCache WHERE chat_id=?", [roomID]);
|
await db
|
||||||
|
.rawDelete("DELETE FROM NotificationsCache WHERE chat_id=?", [roomID]);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Future addNotification(String roomID, String event_id, int uniqueID) async {
|
Future addNotification(String roomID, String event_id, int uniqueID) async {
|
||||||
await db.rawInsert("INSERT INTO NotificationsCache VALUES (?, ?,?)", [uniqueID, roomID, event_id]);
|
await db.rawInsert("INSERT INTO NotificationsCache VALUES (?, ?,?)",
|
||||||
|
[uniqueID, roomID, event_id]);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<List<Map<String, dynamic>>> getNotificationByRoom(String room_id) async {
|
Future<List<Map<String, dynamic>>> getNotificationByRoom(
|
||||||
|
String room_id) async {
|
||||||
List<Map<String, dynamic>> res = await db.rawQuery(
|
List<Map<String, dynamic>> res = await db.rawQuery(
|
||||||
"SELECT * FROM NotificationsCache WHERE chat_id=?", [room_id]);
|
"SELECT * FROM NotificationsCache WHERE chat_id=?", [room_id]);
|
||||||
if (res.length == 0) return null;
|
if (res.length == 0) return null;
|
||||||
|
@ -717,8 +720,9 @@ class Store {
|
||||||
'UNIQUE(chat_id, matrix_id))';
|
'UNIQUE(chat_id, matrix_id))';
|
||||||
|
|
||||||
/// The database scheme for the NotificationsCache class.
|
/// The database scheme for the NotificationsCache class.
|
||||||
static final String NotificationsCacheScheme = 'CREATE TABLE IF NOT EXISTS NotificationsCache(' +
|
static final String NotificationsCacheScheme =
|
||||||
'id int PRIMARY KEY'
|
'CREATE TABLE IF NOT EXISTS NotificationsCache(' +
|
||||||
|
'id int PRIMARY KEY, ' +
|
||||||
'chat_id TEXT, ' + // The chat id
|
'chat_id TEXT, ' + // The chat id
|
||||||
'event_id TEXT, ' + // The matrix id of the Event
|
'event_id TEXT, ' + // The matrix id of the Event
|
||||||
'UNIQUE(event_id))';
|
'UNIQUE(event_id))';
|
||||||
|
|
Loading…
Reference in a new issue