fotostore/sql/deploy/images.sql
2017-08-02 07:46:54 +03:00

7 lines
136 B
PL/PgSQL

-- Deploy fotostore:images to sqlite
BEGIN;
ALTER TABLE images ADD COLUMN original_filename TEXT NOT NULL DEFAULT "Unknown";
COMMIT;