Add forgotten file

This commit is contained in:
Eelco Dolstra 2015-06-17 21:39:28 +02:00
parent ce9e859a9c
commit 4d9c74335d

7
src/sql/upgrade-33.sql Normal file
View file

@ -0,0 +1,7 @@
create table FailedPaths (
path text primary key not null
);
create rule IdempotentInsert as on insert to FailedPaths
where exists (select 1 from FailedPaths where path = new.path)
do instead nothing;