doc/development/postgresql_vfs.sql

Sun, 17 Apr 2022 11:19:13 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sun, 17 Apr 2022 11:19:13 +0200
branch
webdav
changeset 290
efc10acf539f
parent 283
25e5b771677d
child 306
e03737cea6e2
permissions
-rw-r--r--

implement pg vfs mkdir


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