From cc712e74274e254ff36339799abecd7a8de4258a Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sun, 26 Jul 2026 19:00:24 +0100 Subject: [PATCH] Update FilamentStock model to restore 'updatedAt' column for tracking - Reintroduced the 'updatedAt' column in the FilamentStock model, ensuring accurate tracking of updates while maintaining its read-only status and layout properties. --- src/database/models/FilamentStock.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/database/models/FilamentStock.js b/src/database/models/FilamentStock.js index ba33e80..8913e74 100644 --- a/src/database/models/FilamentStock.js +++ b/src/database/models/FilamentStock.js @@ -66,6 +66,13 @@ export const FilamentStock = { readOnly: true, columnWidth: 180 }, + { + name: 'updatedAt', + label: 'Updated At', + type: 'dateTime', + readOnly: true, + columnWidth: 175 + }, { name: 'state', label: 'State', @@ -74,13 +81,6 @@ export const FilamentStock = { readOnly: true, columnWidth: 250 }, - { - name: 'updatedAt', - label: 'Updated At', - type: 'dateTime', - readOnly: true, - columnWidth: 175 - }, { name: 'filament', label: 'Filament',