v0.3.2.6-alpha Fix

This commit is contained in:
KoalaSat 2023-10-22 01:29:07 +02:00
parent 240a2e71b9
commit bdc26112cb
No known key found for this signature in database
GPG Key ID: 2F7F61C6146AB157

View File

@ -256,6 +256,9 @@ public class Database {
" );");
instance.execSQL("CREATE INDEX nostros_notifications_index ON nostros_notifications(created_at);");
} catch (SQLException e) { }
try {
instance.execSQL("ALTER TABLE nostros_notifications ADD COLUMN zapper_user_id TEXT;");
} catch (SQLException e) { }
}
public void saveEvent(JSONObject data, String userPubKey, String relayUrl) throws JSONException {