IndexDefinition

View Source

Summary

Index definition used in schema operations.

Signature

type IndexDefinition = {
  columns: string[];
  name: string;
  table: TableRef;
  unique?: boolean;
  using?: IndexMethod;
  where?: string;
};