_gristsys_PluginData
This data as json
0 records
CREATE TABLE _gristsys_PluginData ( id INTEGER PRIMARY KEY, -- Plain integer plugin data id pluginId TEXT NOT NULL, -- Plugin id key TEXT NOT NULL, -- the key value BLOB DEFAULT '' -- the value associated with the key ); CREATE UNIQUE INDEX _gristsys_PluginData_unique_key on _gristsys_PluginData(pluginId, key);