mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-09-14 11:06:15 +05:00
[autofix.ci] apply automated fixes
This commit is contained in:
parent
97885ee44a
commit
aee15efac7
@ -260,11 +260,21 @@ export const scheduleRouter = createTRPCRouter({
|
||||
orderBy: [asc(schedules.createdAt)],
|
||||
with: {
|
||||
application: {
|
||||
columns: { applicationId: true, appName: true, name: true, serverId: true },
|
||||
columns: {
|
||||
applicationId: true,
|
||||
appName: true,
|
||||
name: true,
|
||||
serverId: true,
|
||||
},
|
||||
},
|
||||
server: true,
|
||||
compose: {
|
||||
columns: { composeId: true, appName: true, name: true, serverId: true },
|
||||
columns: {
|
||||
composeId: true,
|
||||
appName: true,
|
||||
name: true,
|
||||
serverId: true,
|
||||
},
|
||||
},
|
||||
deployments: {
|
||||
orderBy: [desc(deployments.createdAt)],
|
||||
|
||||
@ -60,13 +60,21 @@ export const volumeBackupsRouter = createTRPCRouter({
|
||||
application: {
|
||||
columns: { applicationId: true, appName: true, serverId: true },
|
||||
},
|
||||
postgres: { columns: { postgresId: true, appName: true, serverId: true } },
|
||||
postgres: {
|
||||
columns: { postgresId: true, appName: true, serverId: true },
|
||||
},
|
||||
mysql: { columns: { mysqlId: true, appName: true, serverId: true } },
|
||||
mariadb: { columns: { mariadbId: true, appName: true, serverId: true } },
|
||||
mariadb: {
|
||||
columns: { mariadbId: true, appName: true, serverId: true },
|
||||
},
|
||||
mongo: { columns: { mongoId: true, appName: true, serverId: true } },
|
||||
redis: { columns: { redisId: true, appName: true, serverId: true } },
|
||||
compose: { columns: { composeId: true, appName: true, serverId: true } },
|
||||
libsql: { columns: { libsqlId: true, appName: true, serverId: true } },
|
||||
compose: {
|
||||
columns: { composeId: true, appName: true, serverId: true },
|
||||
},
|
||||
libsql: {
|
||||
columns: { libsqlId: true, appName: true, serverId: true },
|
||||
},
|
||||
},
|
||||
orderBy: [desc(volumeBackups.createdAt)],
|
||||
});
|
||||
|
||||
Loading…
Reference in New Issue
Block a user