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

5 lines
273 B

use kamailio;
alter table mobile_push_registrations change `type` `type` enum('gcm', 'apns', 'fcm') not null;
update mobile_push_registrations set `type` = 'gcm' where `type` = 'fcm';
alter table mobile_push_registrations change `type` `type` enum('gcm', 'apns') not null;