mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-15 20:25:23 +02:00
feat(schedules): add optional description field to schedule form and display
- Updated the schedule form schema to include an optional 'description' field. - Enhanced the form to allow users to input a description for each schedule. - Modified the schedule display component to show the description if available. - Added a database migration to include the 'description' column in the schedule table.
This commit is contained in:
@@ -24,6 +24,7 @@ export const schedules = pgTable("schedule", {
|
||||
.primaryKey()
|
||||
.$defaultFn(() => nanoid()),
|
||||
name: text("name").notNull(),
|
||||
description: text("description"),
|
||||
cronExpression: text("cronExpression").notNull(),
|
||||
appName: text("appName")
|
||||
.notNull()
|
||||
|
||||
Reference in New Issue
Block a user