doctrine/inflector

Table name not found after upgrade - Plural issue

bynicolas opened this issue · 1 comments

Not sure if I should report this here or in laravel/framework, but I'm pretty sure that doctrine/inflector is causing the issue so here it is.

upgrading from 1.3.1 to 1.4.2 my app fails at retrieving a table in my DB.

The table name is project_progresses which is working fine in 1.3.1 but in 1.4.2 is looking for project_progress.

The issue is also present in 2.0.2

Ok so after reading #163 and since progress is a countable and uncountable word. I understand that going forward, this will be handled with more care by doctrine/inflector to the grammatical aspect of words pluralization.

So I've fixed my issue by creating a DB migration to rename the table with the uncountable version of the word progress.

So closing this as it's not an issue but rather a design change