Hello,
I designed a Laravel Eloquent ORM with Skipper. I have an Entity named SourceDB.
When I export to ORM I have :
- Models are named SourceDB
- Migration create a datatable named source_dbs
But when I want to seed my database with the model, Laravel raise an error :
Illuminate\Database\QueryException
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'testdb.source_d_b_s' doesn't exist (Connection: mysql, SQL: insert into `source_d_b_s` (`server_id`, `name`, `updated_at`, `created_at`) values (1, MyDB, 2023-08-04 13:13:13, 2023-08-04 13:13:13))