You can add a check constraint to avoid any registrations with that country:
ALTER TABLE forum_members
WITH NOCHECK ADD CONSTRAINT CK_NO_CONGO_MEMBERS CHECK (M_COUNTRY<>'Congo, Democratic Republic of')
This is for SQL Server and should be run in SQL Server Management Studio. With this, all such registrations will fail.