From 7c33825594266e9551cf3759787ecd02870f4d2a Mon Sep 17 00:00:00 2001 From: James Ward Date: Sun, 8 Aug 2021 19:55:41 -0400 Subject: [PATCH] nullable --- test/functional/schema-builder/entity/Post.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/schema-builder/entity/Post.ts b/test/functional/schema-builder/entity/Post.ts index e58bf426994..7a156aad303 100644 --- a/test/functional/schema-builder/entity/Post.ts +++ b/test/functional/schema-builder/entity/Post.ts @@ -20,7 +20,7 @@ export class Post { @Column({ default: "My post" }) name: string; - @Column() + @Column({ nullable: true }) text: string; @Column()