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.down

10 lines
250 B

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