From 2c9b44d215d25071da22e9ee0566820b84789b5c Mon Sep 17 00:00:00 2001 From: 409 <409dev@protonmail.com> Date: Wed, 30 Jul 2025 23:39:12 +0200 Subject: [PATCH] remove `plan` file --- backend/plan | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 backend/plan diff --git a/backend/plan b/backend/plan deleted file mode 100644 index 61081c3..0000000 --- a/backend/plan +++ /dev/null @@ -1,28 +0,0 @@ -# Structure - -## users -- id -- name -- email -- hash -- admin -- updated_at -- created_at - -## warrens -- id -- name -- path -- allow_children -- updated_at -- created_at - -## user_warrens -- user_id -- warren_id -- can_create_children (the user-specific flag, the warren's `allow_children` takes precedence so that both flags have to be enabled) -- can_list_files (see and traverse the layout of the warren's directories and files) -- can_read_files (read contents of the warren's files) -- can_modify_files (edit contents of the warren's files) -- can_delete_files (delete files and directories) -- can_delete_warren (delete the warren and all its contents)