Skip to content

Commit

Permalink
Resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
mohammadranjbarz committed Jul 5, 2023
2 parents 930fbf3 + a125988 commit 19957e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion migration/1684071046520-create_qfRound_table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class createQfRoundTable1684071046520 implements MigrationInterface {
CREATE TABLE "qf_round" (
"id" SERIAL NOT NULL,
"name" text,
"isActive" boolean NOT NULL DEFAULT true,
"isActive" boolean,
"allocatedFund" integer NOT NULL,
"beginDate" timestamp without time zone NOT NULL,
"endDate" timestamp without time zone NOT NULL,
Expand Down
6 changes: 3 additions & 3 deletions src/entities/qfRound.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ export class QfRound extends BaseEntity {
@PrimaryGeneratedColumn()
id: number;

@Field()
@Field({ nullable: true })
@Column('text', { nullable: true })
name: string;

@Field()
@Column({ default: true })
@Field({ nullable: true })
@Column({ nullable: true })
isActive: boolean;

@Field(type => Number)
Expand Down

0 comments on commit 19957e8

Please sign in to comment.