refactor: remove limitRollback from application settings and related UI components

- Eliminated the "limitRollback" property from the application schema and the ShowRollbackSettings component, streamlining rollback configuration.
- Updated the database schema to drop the "limitRollback" column from the "application" table, ensuring consistency across the application.
This commit is contained in:
Mauricio Siu
2025-06-08 16:53:23 -06:00
parent cf06e5369a
commit ef0cef99a1
5 changed files with 5814 additions and 26 deletions

View File

@@ -132,7 +132,6 @@ export const applications = pgTable("application", {
false,
),
rollbackActive: boolean("rollbackActive").default(false),
limitRollback: integer("limitRollback").default(5),
buildArgs: text("buildArgs"),
memoryReservation: text("memoryReservation"),
memoryLimit: text("memoryLimit"),