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

10 lines
424 B

USE billing;
ALTER TABLE contracts
DROP COLUMN invoice_email_template_id;
ALTER TABLE email_templates modify reseller_id int(11) unsigned not null;
delete from email_templates where reseller_id is null and name='subscriber_default_email';
delete from email_templates where reseller_id is null and name='passreset_default_email';
delete from email_templates where reseller_id is null and name='invoice_default_email';