bookie/schema.sql

15 lines
276 B
MySQL
Raw Permalink Normal View History

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
);
CREATE TABLE ingest (url text not null primary key);
2018-01-01 13:39:39 +00:00