1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2024-11-22 21:39:21 +00:00
comunicapiv3/docs/migration.sql

14 lines
498 B
MySQL
Raw Normal View History

2021-04-10 17:04:08 +00:00
-- User table
ALTER TABLE `utilisateurs`
ADD COLUMN `allow_notif_conv` INT NULL DEFAULT 1 AFTER `delete_likes_after`;
2021-04-10 17:17:11 +00:00
ALTER TABLE `utilisateurs`
ADD COLUMN `allow_notif_sound` INT NULL DEFAULT 1 AFTER `allow_notif_conv`;
2021-04-11 13:02:01 +00:00
-- Clients table
ALTER TABLE `comunic_clients`
2021-04-15 13:32:47 +00:00
ADD COLUMN `firebase_service_account_file` TEXT NULL AFTER `default_expiration_time`;
2021-04-11 13:02:01 +00:00
-- Tokens table
ALTER TABLE `comunic_user_access_tokens`
ADD COLUMN `push_notifications_token` TEXT NULL AFTER `timeout`;