AI Notice: Most documentation right now was auto-generated by an LLM. Handwritten documentation will be implemented over time on the road to 1.0
PluginTableDefinition
Table definition for a plugin database
Signature
interface PluginTableDefinition {
name: string;
columns: PluginColumnDefinition[];
indexes?: PluginIndexDefinition[];
}Members
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | Table name (will be prefixed with plugin ID) |
columns | PluginColumnDefinition[] | yes | Column definitions |
indexes | PluginIndexDefinition[] | no | Optional index definitions |