IndexDefinition
Summary
Index definition used in schema operations.
Signature
type IndexDefinition = {
columns: string[];
name: string;
table: TableRef;
unique?: boolean;
using?: IndexMethod;
where?: string;
};
Index definition used in schema operations.
type IndexDefinition = {
columns: string[];
name: string;
table: TableRef;
unique?: boolean;
using?: IndexMethod;
where?: string;
};