You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gristlabs_grist-core/app/gen-server/migration/1573569442552-CustomerIndex.ts

16 lines
543 B

import {MigrationInterface, QueryRunner, TableIndex} from "typeorm";
export class CustomerIndex1573569442552 implements MigrationInterface {
public async up(queryRunner: QueryRunner): Promise<any> {
await queryRunner.createIndex("billing_accounts", new TableIndex({
name: "billing_accounts__stripe_customer_id",
columnNames: ["stripe_customer_id"]
}));
}
public async down(queryRunner: QueryRunner): Promise<any> {
await queryRunner.dropIndex("billing_accounts", "billing_accounts__stripe_customer_id");
}
}