diff options
Diffstat (limited to 'app/schema.py')
-rw-r--r-- | app/schema.py | 2 |
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 ); ''', |