Id of request has been incorrectly saved as string, this has dictated the returntype to the frontend. Now set from string to int.

This commit is contained in:
2020-04-08 21:58:37 +02:00
parent 943cbe5cb8
commit 578eff30fb

View File

@@ -31,7 +31,7 @@ CREATE TABLE IF NOT EXISTS search_history (
); );
CREATE TABLE IF NOT EXISTS requests( CREATE TABLE IF NOT EXISTS requests(
id TEXT, id NUMBER,
title TEXT, title TEXT,
year NUMBER, year NUMBER,
poster_path TEXT DEFAULT NULL, poster_path TEXT DEFAULT NULL,