From 30e8d12001db3b1048ed9680ac92ec78244a3470 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Thu, 31 Oct 2013 16:09:28 +0100 Subject: [PATCH] Fix sql schema --- schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema.sql b/schema.sql index b6bb8284..5cd24081 100644 --- a/schema.sql +++ b/schema.sql @@ -2,7 +2,7 @@ create table collection ( path varchar primary key not null, - parent_path varchar references collection (path)); + parent_path varchar; create table item ( name varchar primary key not null,