From d8448fd5ed344234309570c6c5100cdda1d97b2d Mon Sep 17 00:00:00 2001 From: Kononnable Date: Sun, 15 Dec 2019 21:41:44 +0100 Subject: [PATCH] test for postgres geography column type --- test/integration/entityTypes/postgres/entity/Post.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/integration/entityTypes/postgres/entity/Post.ts b/test/integration/entityTypes/postgres/entity/Post.ts index 1f1cc56..b715176 100644 --- a/test/integration/entityTypes/postgres/entity/Post.ts +++ b/test/integration/entityTypes/postgres/entity/Post.ts @@ -186,4 +186,7 @@ export class Post { @Column("daterange") daterange: string; + + @Column("geography") + geography: string; }