UNPKG

ddl-manager

Version:

store postgres procedures and triggers in files

10 lines (9 loc) 204 B
export class CacheIndex { constructor( readonly index: string, readonly on: string[] ) {} toString() { return `index ${this.index} on (${this.on.join(", ")})`; } }