doc/development/postgresql_vfs.sql

Thu, 03 Feb 2022 18:03:27 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Thu, 03 Feb 2022 18:03:27 +0100
branch
webdav
changeset 284
eab579b8c80d
parent 283
25e5b771677d
child 306
e03737cea6e2
permissions
-rw-r--r--

add missing postgresql vfs io functions


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