7 lines
141 B
PL/PgSQL
7 lines
141 B
PL/PgSQL
-- Verify fotostore:albums on sqlite
|
|
|
|
BEGIN;
|
|
|
|
select album_id, name, description, created, modified, deleted from albums where 0;
|
|
|
|
ROLLBACK;
|