summaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2024-03-26 23:24:14 +0000
committerIan C <ianc@noddybox.co.uk>2024-03-26 23:24:14 +0000
commitea48c74310177a52471edd893622edbe43c69766 (patch)
tree6177964cfd43750b9683662c7920cb043a3347d4 /schema.sql
parente9ee8fb4d2f10b67e241501f919b7cd8c0cc2d93 (diff)
Fixed error in timestamp with time zoneHEAD1.0master
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql
index fd98920..43ecdd1 100644
--- a/schema.sql
+++ b/schema.sql
@@ -26,5 +26,5 @@ create table if not exists download
(
key varchar(64) not null references file_object(key),
info text[] not null,
- time timestamp with timezone not null
+ time timestamp with time zone not null
);