mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-05-18 20:28:42 -05:00
6 lines
135 B
SQL
6 lines
135 B
SQL
CREATE TABLE storage_backends(
|
|
name TEXT PRIMARY KEY,
|
|
driver TEXT NOT NULL,
|
|
params JSONB NOT NULL
|
|
);
|