mirror of
https://github.com/ksyasuda/aniwrapper.git
synced 2025-12-05 02:53:37 -08:00
change search/watch date from date to datetime
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
CREATE TABLE search_history (
|
||||
id integer PRIMARY KEY autoincrement,
|
||||
name varchar(200) NOT NULL,
|
||||
search_date date NOT NULL
|
||||
id integer PRIMARY KEY AUTOINCREMENT,
|
||||
anime_name varchar(200),
|
||||
search_date datetime NOT NULL
|
||||
);
|
||||
|
||||
|
||||
@@ -2,6 +2,6 @@ CREATE TABLE watch_history (
|
||||
id integer PRIMARY KEY AUTOINCREMENT,
|
||||
anime_name varchar(200) NOT NULL,
|
||||
episode_number integer NOT NULL,
|
||||
watch_date date
|
||||
watch_date datetime NOT NULL
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user