![]() |
OK so i have solved my primary indexing issues in 2 steps. 1 by simply changing my primary key selection( misinterpretation of my key at issue ), 2 by flipping the variable chosen for some of my loops, my oops on that one! Since the keys are really important to my database i backed up the table separate from my database backup before proving out the crud. I have chosen to allow changes on different columns in my model rather than all (all columns not practical) ---protected $allowedFields = [ 'a', 'b', 'c' ];. I will only list my important columns , the target columns where updating is truly needed i will try to setup soft deletes, update tracking on those fields in the adjoining html form next.
|
Messages In This Thread |
CRUD applications to update MYSQL database - by mcrase2021 - 09-14-2021, 05:20 PM
RE: CRUD applications to update MYSQL database - by InsiteFX - 09-15-2021, 01:09 AM
RE: CRUD applications to update MYSQL database - by mcrase2021 - 09-17-2021, 09:33 PM
RE: CRUD applications to update MYSQL database - by ikesela - 09-15-2021, 12:29 PM
RE: CRUD applications to update MYSQL database - by mcrase2021 - 09-20-2021, 06:30 PM
|