terom@24: terom@24: Just a simple pure-data filesystem stored in a SQL database. Implementation using PostgreSQL. terom@24: No weird dynamic magic. terom@24: terom@24: terom@24: file_tree: terom@24: offset serial4 ephemeral counter used to tell one file entry from another terom@24: name varchar(256) the filename terom@24: parent int4 -> inodes.ino file entry's parent terom@24: inode int4 -> inodes.ino the file's data terom@24: terom@24: inodes: terom@24: ino serial4 inode number terom@24: type char(3) terom@24: REG normal file terom@24: DIR directory terom@24: mode int2 file access modes terom@24: size int8 file content size (?) terom@24: