doc/development/postgresql_vfs.sql

Thu, 03 Feb 2022 17:26:08 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Thu, 03 Feb 2022 17:26:08 +0100
branch
webdav
changeset 283
25e5b771677d
parent 281
e9dc53661df4
child 306
e03737cea6e2
permissions
-rw-r--r--

minimal working send_file with postgresql vfs


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