You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
you need to add the foreign key to model creating as this example
Product BelongsTo Category name:string category_id:integer
then add this next line to ignore the key that have " anyword_id" during creating migration file
in the start.php file at line num 601 after the foreach which build the sechma
you can add this code after foreach line
if (strpos($field, '_id') !== false){
continue;
}
it something so small but you know being lazy make us try to do it all auto :D
The text was updated successfully, but these errors were encountered:
you need to add the foreign key to model creating as this example
Product BelongsTo Category name:string category_id:integer
then add this next line to ignore the key that have " anyword_id" during creating migration file
in the start.php file at line num 601 after the foreach which build the sechma
you can add this code after foreach line
it something so small but you know being lazy make us try to do it all auto :D
The text was updated successfully, but these errors were encountered: