aniwrapper/sql/watch_history_tbl.sql
ksyasuda a11d55b726 fix checkdb function and add needed .rasi conf
fixed checkdb function always returning 2 instead of the count

also add arc_dark_transparent_colors.rasi config file for use in meh.rasi
2021-10-30 11:27:37 -07:00

8 lines
170 B
SQL

CREATE TABLE watch_history (
id integer PRIMARY KEY AUTOINCREMENT,
anime_name varchar(200) NOT NULL,
episode_number integer NOT NULL,
watch_date date
);