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/15608.up

6 lines
172 B

ALTER TABLE `billing`.`admins`
ADD COLUMN `is_system` TINYINT(1) NOT NULL DEFAULT 0;
UPDATE `billing`.`admins`
SET `is_system` = 1, `lawful_intercept` = 0
WHERE `id` = 1;