mirror of
https://github.com/grassrootseconomics/cic-custodial.git
synced 2024-11-22 06:16:45 +01:00
33 lines
825 B
MySQL
33 lines
825 B
MySQL
|
ALTER TABLE keystore
|
||
|
ADD COLUMN updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP;
|
||
|
|
||
|
ALTER TABLE otx_dispatch
|
||
|
ADD COLUMN updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP;
|
||
|
|
||
|
ALTER TABLE gas_quota
|
||
|
ADD COLUMN updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP;
|
||
|
|
||
|
-- updated_at function
|
||
|
create function update_timestamp()
|
||
|
returns trigger
|
||
|
as $$
|
||
|
begin
|
||
|
new.updated_at = current_timestamp;
|
||
|
return new;
|
||
|
end;
|
||
|
$$ language plpgsql;
|
||
|
|
||
|
create trigger update_keystore_timestamp
|
||
|
before update on keystore
|
||
|
for each row
|
||
|
execute procedure update_timestamp();
|
||
|
|
||
|
create trigger update_otx_dispatch_timestamp
|
||
|
before update on otx_dispatch
|
||
|
for each row
|
||
|
execute procedure update_timestamp();
|
||
|
|
||
|
create trigger update_gas_quota_timestamp
|
||
|
before update on gas_quota
|
||
|
for each row
|
||
|
execute procedure update_timestamp();
|