From 53798d3bbfb9924a96dce0533f82892278e4d99e Mon Sep 17 00:00:00 2001 From: "arthur.valin" Date: Mon, 5 Feb 2024 16:31:20 +0100 Subject: [PATCH] fix api pg enum --- .../src/main/kotlin/allin/data/postgres/PostgresDataSource.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/src/main/kotlin/allin/data/postgres/PostgresDataSource.kt b/Sources/src/main/kotlin/allin/data/postgres/PostgresDataSource.kt index 8d7a284..bb89138 100644 --- a/Sources/src/main/kotlin/allin/data/postgres/PostgresDataSource.kt +++ b/Sources/src/main/kotlin/allin/data/postgres/PostgresDataSource.kt @@ -44,8 +44,8 @@ class PostgresDataSource : AllInDataSource() { sentencebet varchar(500), isprivate boolean, createdby varchar(250), - status varchar(20), - type varchar(20) + status smallint, + type smallint )""".trimIndent() )