From 28e1ca51e7d24d0e34482e25efbbde04da550e3e Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 14 Oct 2021 10:09:01 +0200 Subject: [PATCH] db_postgres: remove unnecessary DEFAULT NULL in schema --- db_postgres.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db_postgres.go b/db_postgres.go index 4898586..548f02c 100644 --- a/db_postgres.go +++ b/db_postgres.go @@ -41,8 +41,8 @@ CREATE TABLE "Network" ( sasl_mechanism VARCHAR(255), sasl_plain_username VARCHAR(255), sasl_plain_password VARCHAR(255), - sasl_external_cert BYTEA DEFAULT NULL, - sasl_external_key BYTEA DEFAULT NULL, + sasl_external_cert BYTEA, + sasl_external_key BYTEA, enabled BOOLEAN NOT NULL DEFAULT TRUE, UNIQUE("user", addr, nick), UNIQUE("user", name)