From 53124776d406e090f1f11fe8eb3c145babdff8bc Mon Sep 17 00:00:00 2001 From: Ske Date: Sat, 2 Nov 2019 23:38:25 +0100 Subject: [PATCH] Fix proxy tag field default type in schema --- PluralKit.Core/db_schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Core/db_schema.sql b/PluralKit.Core/db_schema.sql index 051594f7..fd9706b8 100644 --- a/PluralKit.Core/db_schema.sql +++ b/PluralKit.Core/db_schema.sql @@ -32,7 +32,7 @@ create table if not exists members birthday date, pronouns text, description text, - proxy_tags proxy_tag[] not null default array[], -- Rationale on making this an array rather than a separate table - we never need to query them individually, only access them as part of a selected Member struct + proxy_tags proxy_tag[] not null default array[]::proxy_tag[], -- Rationale on making this an array rather than a separate table - we never need to query them individually, only access them as part of a selected Member struct keep_proxy bool not null default false, created timestamp not null default (current_timestamp at time zone 'utc') );