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
PluginIndexDefinition
Index definition for a plugin database table
Signature
interface PluginIndexDefinition {
name: string;
columns: string[];
unique?: boolean;
}Members
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | Index name (will be prefixed with table name) |
columns | string[] | yes | Columns to index |
unique | boolean | no | Whether this is a unique index |