Files
gloom/schema.sql
Zoe b8f5bce66c add plugin hosts to seperate plugins from gloomi
This adds a plugin host that seperates plugins from the gloomi process,
allowing for plugins to be unloaded and loaded. This commit also has a
fair amount of other changes, nice to haves and bug fixes, some notable
changes are:
- Highly available reverse proxy from my Flux project
- Improved gloomi functionality
2025-05-14 19:31:58 -05:00

7 lines
170 B
SQL

CREATE TABLE IF NOT EXISTS plugins (
id INTEGER PRIMARY KEY AUTOINCREMENT,
path TEXT NOT NULL UNIQUE,
name TEXT NOT NULL UNIQUE,
domains TEXT NOT NULL
);