You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
db-schema/db_scripts/diff/15548.up

10 lines
272 B

set autocommit=0;
use billing;
update billing.billing_profiles set terminate_timestamp = '0000-00-00 00:00:00' where terminate_timestamp is null;
alter table billing.billing_profiles modify terminate_timestamp timestamp not null default '0000-00-00 00:00:00';
commit;