Add enums tab

This commit is contained in:
1ilit
2024-06-30 13:19:21 +03:00
parent 259835892a
commit 810afe4bc0
13 changed files with 313 additions and 18 deletions

View File

@@ -50,6 +50,7 @@ export const Tab = {
AREAS: "3",
NOTES: "4",
TYPES: "5",
ENUMS: "6",
};
export const ObjectType = {
@@ -59,6 +60,7 @@ export const ObjectType = {
NOTE: 3,
RELATIONSHIP: 4,
TYPE: 5,
ENUM: 6,
};
export const Action = {

View File

@@ -18,6 +18,7 @@ export const databases = {
label: DB.POSTGRES,
image: postgresImage,
hasTypes: true,
hasEnums: true,
},
[DB.SQLITE]: {
name: "SQLite",