mirror of
https://github.com/ksyasuda/aniwrapper.git
synced 2024-10-28 04:44:11 -07:00
8 lines
170 B
MySQL
8 lines
170 B
MySQL
|
CREATE TABLE watch_history (
|
||
|
id integer PRIMARY KEY AUTOINCREMENT,
|
||
|
anime_name varchar(200) NOT NULL,
|
||
|
episode_number integer NOT NULL,
|
||
|
watch_date date
|
||
|
);
|
||
|
|