mirror of
https://github.com/ksyasuda/aniwrapper.git
synced 2025-01-30 22:27:39 -08:00
7 lines
139 B
SQL
7 lines
139 B
SQL
CREATE TABLE search_history (
|
|
id integer PRIMARY KEY AUTOINCREMENT,
|
|
anime_name varchar(200),
|
|
search_date datetime NOT NULL
|
|
);
|
|
|