summaryrefslogtreecommitdiffstats
path: root/app/schema.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/schema.py')
-rw-r--r--app/schema.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/schema.py b/app/schema.py
index 247638f..38b934f 100644
--- a/app/schema.py
+++ b/app/schema.py
@@ -3,7 +3,7 @@ schema_up = [
CREATE TABLE IF NOT EXISTS pics (
id SERIAL PRIMARY KEY UNIQUE,
src_url VARCHAR(1024),
- ext VARCHAR(10),
+ content_type VARCHAR(256),
deleted BOOLEAN
);
''',