mirror of
https://github.com/modrinth/code.git
synced 2026-08-24 16:44:51 +00:00
7 lines
317 B
SQL
7 lines
317 B
SQL
INSERT INTO notifications_types
|
|
(name, delivery_priority, expose_in_user_preferences, expose_in_site_notifications)
|
|
VALUES ('shared_instance_invite', 1, FALSE, TRUE);
|
|
|
|
INSERT INTO users_notifications_preferences (user_id, channel, notification_type, enabled)
|
|
VALUES (NULL, 'email', 'shared_instance_invite', FALSE);
|