From b9bef2fe32111b6a0d531b239d5b58b2af193f36 Mon Sep 17 00:00:00 2001 From: Nicolas Boisselier Date: Tue, 9 Jan 2018 02:58:48 +0000 Subject: [PATCH] lib/postgres/mime.sql --- lib/postgres/mime.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/postgres/mime.sql b/lib/postgres/mime.sql index 9e10ba61..d4bdd32e 100644 --- a/lib/postgres/mime.sql +++ b/lib/postgres/mime.sql @@ -1,8 +1,8 @@ DROP TABLE IF EXISTS mime; CREATE TABLE IF NOT EXISTS mime ( - ext varchar(128), - type varchar(128) NOT NULL DEFAULT '', - name varchar(128), + ext varchar(12), + type varchar(80) NOT NULL DEFAULT '', + name varchar(100), PRIMARY KEY(type,ext) ); CREATE INDEX IF NOT EXISTS mime_ext_idx ON mime (ext); -- 2.47.3