add a tool to export the HDS stories into a sqlite database

This commit is contained in:
Romain Bignon 2011-08-03 15:58:43 +02:00
commit dff165593f
2 changed files with 142 additions and 0 deletions

19
contrib/hds/scheme.sql Normal file
View file

@ -0,0 +1,19 @@
DROP TABLE authors;
CREATE TABLE authors (
name TEXT PRIMARY KEY,
sex INTEGER,
description
);
CREATE INDEX author_idx ON authors(name, sex);
DROP TABLE stories;
CREATE TABLE stories (
id INTEGER PRIMARY KEY,
title TEXT,
date TEXT,
category TEXT,
author TEXT REFERENCES authors,
body TEXT
);
CREATE INDEX stories_idx ON stories(id, category);