summaryrefslogtreecommitdiff
path: root/schema.sql
blob: 457b499e8d5a298459195cc02a379c33335be37b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
drop table if exists epube_pagination;
drop table if exists epube_books;

create table epube_pagination(
	id integer not null primary key autoincrement,
	bookid integer not null,
	total_pages integer not null,
	pagination text not null);

create table epube_books(
	id integer not null primary key autoincrement,
	bookid integer not null,
	owner varchar(200) not null,
	lastcfi varchar(200) not null,
	lastread integer not null);