I have a table named tab1. I want add a new column to the table. I tried
alter table tab1 add column mod_at TIMESTAMP default CURRENT_TIMESTAMP
I succeeded in adding the column. But the default timestamp value added will be local timestamp. How to add the UTC timestamp as default value, instead of local timestamp?