arnoldasgudas / Hangfire.MySqlStorage

MySql storage for Hangfire - fire-and-forget, delayed and recurring tasks runner
GNU Lesser General Public License v3.0
175 stars 114 forks source link

lowercase table names in mysql linux #66

Closed cesarbmx closed 4 years ago

cesarbmx commented 4 years ago

I am running Hangfire on MySQL on Linux, which is case sensitive.

I am getting Table Hangfire_DistributedLock doesn't exist image

Is there any way to make Hangfire use lower case table names?

tluyben commented 4 years ago

You can put

lower_case_table_names = 1

in your mysqld config, that works.