doc/development/postgresql_vfs.sql

branch
webdav
changeset 306
e03737cea6e2
parent 283
25e5b771677d
child 317
09676b559091
equal deleted inserted replaced
305:4db64fe30588 306:e03737cea6e2
12 resoid oid, 12 resoid oid,
13 13
14 unique(parent_id, nodename) 14 unique(parent_id, nodename)
15 ); 15 );
16 16
17 create table Property (
18 property_id serial primary key,
19 resource_id int references Resource(resource_id) on delete cascade,
20 xmlns text not null,
21 pname text not null,
22 pvalue text
23 );
24
25 create type property_name as (
26 xmlns text,
27 name text
28 );
29

mercurial