test-easy-psql
Version:
Welcome to the test-easy-psql documentation! test-easy-psql is a simple intermediary for querying data in PostgreSQL databases. Whether you're a beginner or an experienced developer, this documentation will help you get started with test-easy-psql and lev
23 lines (22 loc) • 549 B
TypeScript
export = Index;
declare class Index {
constructor({ type, columns, auto_increment, table, onUpdate, onDelete }: {
type: any;
columns: any;
auto_increment: any;
table: any;
onUpdate: any;
onDelete: any;
});
type: any;
columns: any;
table: any;
produceIndexCreateSQL(): {
up: string;
down: void;
};
produceCreatePrimaryKeySQL(): string;
produceDropPrimaryKeySQL(): void;
produceCreateForeignKeySQL(): void;
productDropForeignKeySQL(): void;
}