UNPKG

@smallprod/models

Version:
11 lines (10 loc) 260 B
export default abstract class MigrationType { tableName: string; type: string; constructor(tableName: string, type: string); abstract formatQuery(): { query?: string[]; constraints?: string[]; seeds?: string[]; }; }