aniwrapper/sql/anime_search_history.sql
ksyasuda 9254956775 change most menus to rofi and add history db
all menus (except the last one) use rofi menu

additionally all anime's selected in a search or episodes selected to
watch will be inserted into a local sqlite3 database [history.sqlite3]
2021-10-29 22:49:52 -07:00

7 lines
138 B
SQL

CREATE TABLE search_history (
id integer PRIMARY KEY autoincrement,
name varchar(200) NOT NULL,
search_date date NOT NULL
);