Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,23 @@ The filesystem is implemented using the common pattern of blocks allocated to
a file. The file system is stored in a SQLite table, with the following
columns:

full key path | type | inode | uid | gid | mode | acl | attributes | atime | mtime | ctime | size | block_size
text | text | integer | integer | integer | integer | text | text | integer | integer | integer | integer | integer

| Column Name | Type |
|----------------|----------|
| full key path | text |
| type | text |
| inode | integer |
| uid | integer |
| gid | integer |
| mode | integer |
| acl | text |
| attributes | text |
| atime | integer |
| mtime | integer |
| ctime | integer |
| size | integer |
| block_size | integer |


The key path must be an absolute path using "/" as the path separators. The
path is case sensitive. The type of data associated with the key path can be
Expand Down