Added Db support to save last viewed Manga and chapter, and auto load it next time you start the server. Added Providers to add more Manga Platforms than just Bato in the future
15 lines
367 B
SQL
15 lines
367 B
SQL
create table if not exists Manga (
|
|
ID integer not null primary key,
|
|
Title text,
|
|
TimeStampUnixEpoch int
|
|
);
|
|
|
|
create table if not exists Chapter (
|
|
ID integer not null primary key,
|
|
MangaID integer not null,
|
|
Url text not null,
|
|
Name text null,
|
|
Number int not null,
|
|
TimeStampUnixEpoch int,
|
|
foreign key(MangaID) references Manga(ID)
|
|
); |