2023-01-03 02:13:08 +00:00
|
|
|
CREATE TABLE bookmarks (
|
|
|
|
url text not null primary key,
|
|
|
|
domain text,
|
|
|
|
title text,
|
|
|
|
author text,
|
|
|
|
date text,
|
|
|
|
pubDate text,
|
|
|
|
comments text,
|
|
|
|
mercuryContent text,
|
|
|
|
pdfpath text,
|
|
|
|
tags text
|
|
|
|
);
|
2018-01-05 17:12:15 +00:00
|
|
|
CREATE TABLE ingest (url text not null primary key);
|
2018-01-01 13:39:39 +00:00
|
|
|
|