From 4d29bb45fa966cf3508afdfbb9a35f872b4cc3d7 Mon Sep 17 00:00:00 2001 From: sparkyx Date: Thu, 22 May 2025 00:05:06 +0200 Subject: [PATCH] Add column timestamp for table TOOL_UOS --- sql/upgrade.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sql/upgrade.sql b/sql/upgrade.sql index c7f275742..df477a929 100644 --- a/sql/upgrade.sql +++ b/sql/upgrade.sql @@ -7,4 +7,6 @@ update parm_appearance set a_value='#506cb8 ' where a_code='MENU1-SELECTED' and ALTER TABLE public.todo_list ALTER COLUMN tl_date drop NOT NULL; -update menu_ref set me_javascript='bookmark.show()' where me_code='BOOKMARK'; \ No newline at end of file +update menu_ref set me_javascript='bookmark.show()' where me_code='BOOKMARK'; + +alter table tool_uos add created_date timestamp default now();