doc/development/postgresql_vfs.sql

branch
webdav
changeset 278
38bf7b42b58c
child 281
e9dc53661df4
equal deleted inserted replaced
277:7608af69739f 278:38bf7b42b58c
1
2 create table Resource (
3 resource_id serial primary key,
4 parent_id int references Resource(resource_id),
5 nodename text not null,
6 iscollection boolean not null default(false),
7
8 unique(parent_id, nodename)
9 );

mercurial