CREATE PROCEDURE [dbo].[BO_RemoveUserFollow]
@userId int,
@followUserId int
AS
DELETE UserFollows where UserId = @userId and FollowUserId = @followUserId -- ignore errors
EXEC BO_GetUserFollows @userId
RETURN 0