Phials developer documentation
User guide
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

NameTypeRequiredDescription
namestringyesIndex name (will be prefixed with table name)
columnsstring[]yesColumns to index
uniquebooleannoWhether this is a unique index