Error creating Hangfire schema

When my application hits

GlobalConfiguration.Configuration.UseSqlServerStorage(“MyConnString”)

I get this error:
System.Data.SqlClient.SqlException: User does not have permission to perform this action.
CREATE SCHEMA failed due to previous errors.
The specified schema name “HangFire” either does not exist or you do not have permission to use it.
Installing Hangfire SQL objects…
Created database schema [HangFire]

The schema is not created.

What user is it trying to use?

I found the issue. I just had to make sure the user had the rights to create the schema, etc.