doc/development/postgresql_vfs.sql

Fri, 04 Feb 2022 18:41:40 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Fri, 04 Feb 2022 18:41:40 +0100
branch
webdav
changeset 286
864e2d701dd4
parent 283
25e5b771677d
child 306
e03737cea6e2
permissions
-rw-r--r--

set error status code directly in vfs_* calls


create table Resource (
    resource_id       serial    primary key,
    parent_id         int       references Resource(resource_id),
    nodename          text      not null,
    iscollection      boolean   not null default false,
	
    lastmodified      timestamp not null default current_date,
    creationdate      timestamp not null default current_date,
    contentlength     bigint    not null default 0,

    resoid            oid,
    
    unique(parent_id, nodename)
);

mercurial