aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/db/migration/V1.30__token_type.sql
blob: 601695d830f7f3de3ea7802d838dc1fd21e2540e (plain) (blame)
1
2
3
4
alter table android add column service_type varchar(255) not null default 'fcm';
insert into android (user_id, ts, regid, service_type) select user_id, ts, url regid, 'mpns' from winphone;
insert into android (user_id, ts, regid, service_type) select user_id, ts, token regid, 'apns' from ios;