Skip to content

Commit

Permalink
Bc 7197 fix migration (#4958)
Browse files Browse the repository at this point in the history
* Change Index declaration method
  • Loading branch information
blazejpass authored and bergatco committed May 6, 2024
1 parent 083d531 commit da554f7
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export abstract class BoardNode extends BaseEntityWithTimestamps {
this.title = props.title;
}

@Index()
@Property({ nullable: false })
path: string;

Expand All @@ -35,7 +34,6 @@ export abstract class BoardNode extends BaseEntityWithTimestamps {
@Property({ nullable: false })
position: number;

@Index()
@Enum(() => BoardNodeType)
type!: BoardNodeType;

Expand Down

0 comments on commit da554f7

Please sign in to comment.