SYNC: diagrams supported in team files

This commit is contained in:
SPRINX0\prochazka
2025-11-25 09:20:09 +01:00
committed by Diflow
parent 5553e3cd8d
commit 53c63f0f4b
3 changed files with 18 additions and 3 deletions

View File

@@ -1533,6 +1533,12 @@ module.exports = {
"columnName": "name",
"dataType": "varchar(250)",
"notNull": true
},
{
"pureName": "team_file_types",
"columnName": "format",
"dataType": "varchar(50)",
"notNull": false
}
],
"foreignKeys": [],
@@ -1549,7 +1555,13 @@ module.exports = {
"preloadedRows": [
{
"id": -1,
"name": "sql"
"name": "sql",
"format": "text"
},
{
"id": -2,
"name": "diagrams",
"format": "json"
}
]
},