feat: add remaining fields to schema

This commit is contained in:
itsscb 2025-05-04 20:31:24 +02:00
parent 05a4e24483
commit a2a9be299b
2 changed files with 9 additions and 3 deletions

BIN
db_dev.db

Binary file not shown.

View File

@ -1,5 +1,11 @@
CREATE TABLE IF NOT EXISTS scripts (
id TEXT PRIMARY KEY,
name TEXT NOT NULL,
path TEXT NOT NULL
id TEXT PRIMARY KEY,
name TEXT NOT NULL,
path TEXT NOT NULL,
parameters TEXT NOT NULL,
default_parameter_set TEXT,
help_uri TEXT,
supports_paging TEXT,
supports_should_process BOOLEAN,
positional_binding BOOLEAN
)