7 lines
76 B
PL/PgSQL
7 lines
76 B
PL/PgSQL
-- Revert fotostore:images from sqlite
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE images;
|
|
|
|
COMMIT;
|