Skip to content

Commit

Permalink
refactor(starters): Removing unnecessary static property in the migra…
Browse files Browse the repository at this point in the history
…tions
  • Loading branch information
adrien2p committed Feb 26, 2022
1 parent 29afad4 commit a900714
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { MigrationInterface, QueryRunner } from 'typeorm';
@Migration()
export default class addStoreIdToUser1611063162649 implements MigrationInterface {
name = 'addStoreIdToUser1611063162649';
static isHandledByMedusa = true;

public async up(queryRunner: QueryRunner): Promise<void> {
const query = `ALTER TABLE public."user" ADD COLUMN IF NOT EXISTS "store_id" text;`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { MigrationInterface, QueryRunner } from 'typeorm';
@Migration()
export default class addStoreIdToUser1611063162649 implements MigrationInterface {
name = 'addStoreIdToUser1611063162649';
static isHandledByMedusa = true;

public async up(queryRunner: QueryRunner): Promise<void> {
const query = `ALTER TABLE public."user" ADD COLUMN IF NOT EXISTS "store_id" text;`;
Expand Down

0 comments on commit a900714

Please sign in to comment.