flatfile.schema 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. CREATE TABLE IF NOT EXISTS tag (
  2. id INTEGER PRIMARY KEY AUTOINCREMENT,
  3. name TEXT NOT NULL UNIQUE
  4. );
  5. CREATE TABLE IF NOT EXISTS posts_index (
  6. post_id TEXT NOT NULL,
  7. post_time INTEGER NOT NULL,
  8. tag_id INTEGER NOT NULL REFERENCES tag(id) ON DELETE CASCADE
  9. );
  10. CREATE INDEX IF NOT EXISTS tag_idx ON tag(name);
  11. CREATE VIEW IF NOT EXISTS posts AS SELECT p.post_id AS id, p.post_time AS created, t.name AS tag FROM posts_index AS p JOIN tag AS t ON t.id=p.tag_id;
  12. /* The intention is to read this entirely into memory at app startup */
  13. /* This should not incur significant costs, even with millions of posts. */
  14. CREATE TABLE IF NOT EXISTS routes (
  15. id INTEGER PRIMARY KEY AUTOINCREMENT,
  16. route TEXT NOT NULL UNIQUE,
  17. method_id TEXT NOT NULL REFERENCES methods(id) ON DELETE RESTRICT,
  18. callback_id TEXT NOT NULL REFERENCES callbacks(id) ON DELETE RESTRICT
  19. );
  20. /* Enum tables like this always require cleanup when there are no more references. */
  21. /* TODO ^^^ */
  22. CREATE TABLE IF NOT EXISTS methods (
  23. id INTEGER PRIMARY KEY AUTOINCREMENT,
  24. method TEXT NOT NULL UNIQUE
  25. );
  26. CREATE TABLE IF NOT EXISTS callbacks (
  27. id INTEGER PRIMARY KEY AUTOINCREMENT,
  28. callback TEXT NOT NULL UNIQUE
  29. );
  30. CREATE VIEW IF NOT EXISTS all_routes AS SELECT r.id AS id, r.route AS route, m.method AS method, c.callback AS callback FROM routes AS r JOIN methods AS m ON m.id=r.method_id JOIN callbacks AS c ON c.id=r.callback_id;
  31. /* Fill the methods table with the HTTP verbs */
  32. INSERT OR IGNORE INTO methods (method) VALUES ('GET'),('POST'),('DELETE'),('PUT'),('HEAD'),('PATCH'),('CONNECT'),('OPTIONS'),('TRACE');
  33. CREATE TABLE IF NOT EXISTS post_aliases (
  34. route_id INTEGER NOT NULL REFERENCES routes(id) ON DELETE CASCADE,
  35. alias TEXT NOT NULL UNIQUE
  36. );
  37. CREATE VIEW IF NOT EXISTS aliases AS SELECT r.route AS actual, a.alias AS alias FROM routes AS r JOIN post_aliases AS a ON r.id=a.route_id;