@@ -16,12 +16,12 @@ This document outlines Cortex database architecture which is designed to store a
16
16
files and more.
17
17
18
18
## Table Structure
19
- ### schema Table
20
- The ` schema ` table is designed to hold schema version for cortex database. Below is the structure of the table:
19
+ ### schema_version Table
20
+ The ` schema_version ` table is designed to hold schema version for cortex database. Below is the structure of the table:
21
21
22
22
| Column Name | Data Type | Description |
23
23
| --------------------| -----------| ---------------------------------------------------------|
24
- | schema_version | INTEGER | A unique schema version for database. |
24
+ | version | INTEGER | A unique schema version for database. |
25
25
26
26
27
27
### models Table
@@ -64,10 +64,10 @@ Below is the structure of the table:
64
64
| api_key | TEXT | |
65
65
| url | TEXT | |
66
66
| version | TEXT | The current version of the engine. |
67
- | variant | TEXT | |
67
+ | variant | TEXT | A string that specifies the specific configuration or build variant of the engine. |
68
68
| status | TEXT | Current status of the engine (e.g., "downloaded", "downloadable"). |
69
69
| metadata | TEXT | Additional metadata or information about the engine. |
70
- | date_ceated | TEXT | Date when the engine was downloaded. |
70
+ | date_created | TEXT | Date when the engine was downloaded. |
71
71
| date_updated | TEXT | Date when the engine was last updated. |
72
72
73
73
### files Table
@@ -79,5 +79,5 @@ The `files` table is designed to hold metadata about objects dowloaded via Corte
79
79
| object | TEXT | The type of hardware. |
80
80
| purpose | TEXT | Purpose of file |
81
81
| filename | TEXT | The name of the file. |
82
- | created_at | INTEGER | Date when file was created |
83
- | bytes | INTEGER | |
82
+ | created_at | INTEGER | Date when file was created. |
83
+ | bytes | INTEGER | Size of the file on disk in bytes. |
0 commit comments