Browse Source

Fix sql schema

Guillaume Ayoub 12 years ago
parent
commit
30e8d12001
1 changed files with 1 additions and 1 deletions
  1. 1 1
      schema.sql

+ 1 - 1
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,