| author | Tero Marttila <terom@fixme.fi> |
| Sun, 12 Oct 2008 20:10:47 +0300 | |
| changeset 25 | 99a41f48e29b |
| parent 24 | 82cfdb6680d1 |
| child 27 | 461be4cd34a3 |
| permissions | -rw-r--r-- |
CREATE TABLE inodes (ino serial4 primary key, type char(3), mode int2, size int8); CREATE TABLE file_tree ("offset" serial4 primary key, name varchar(256) NOT NULL, parent int4 references inodes(ino) NOT NULL, inode int4 references inodes(ino) NOT NULL); INSERT INTO inodes VALUES (1, 'DIR', 365, 0); INSERT INTO inodes VALUES (2, 'REG', 292, 0); INSERT INTO file_tree (name, parent, inode) VALUES ('foo', 1, 2);