mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-25 15:55:43 +02:00
[autofix.ci] apply automated fixes
This commit is contained in:
@@ -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)],
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user