bookie/schema.sql
2023-01-02 18:13:08 -08:00

14 lines
276 B
SQL

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
);
CREATE TABLE ingest (url text not null primary key);