message-db-temp-0.0.1.0: official-message-db-upstream/database/roles/message-store.sql
DO $$
BEGIN
CREATE ROLE message_store WITH LOGIN;
EXCEPTION
WHEN duplicate_object THEN
RAISE NOTICE 'The message_store role already exists';
END$$;
DO $$
BEGIN
CREATE ROLE message_store WITH LOGIN;
EXCEPTION
WHEN duplicate_object THEN
RAISE NOTICE 'The message_store role already exists';
END$$;