24da0c8cfb
Co-authored-by: Monta <monta@HP-ProBook-445-14-inch-G9-Notebook-PC-505aadfc.localdomain>
1.0 KiB
1.0 KiB
description
| description |
|---|
| File database models |
Database models
-
files The main file object in database
javascript { //Primary key: [["company_id"], "id"] "company_id": "uuid-v4", "id": "uuid-v4", "user_id": "string", "application_id": "string", "updated_at": "number", "created_at":"number "upload_data": (json){ "size": number, //Total file size "chunks": number, //Number of chunks } "metadata": (json){ "name": "string", //File name "mime": "type/subtype", } "thumbnails": (json) { //Url to thumbnail (or set it to undefined if no relevant) "index": "string", "id": "uuid-v4", "type": "string", "size": "number, "width": number, //Thumbnail width (for images only) "height": number, //Thumbnail height (for images only) } }