dreamsbond

Results 120 comments of dreamsbond

> What do you mean by "get the primary id changed"? Change it in "update" operation? yes, get primary id changed by "update" operation > FOREIGN KEY constraint failed: update...

> If you tell me how to do it in SQL then I can tell what do to in the framework. Currently, I have a feeling that it would be...

something like ```php protected $guarded = ['uuid']; ``` in laravel

and followed by the guarded field. is it possible to achieve ```php class User extends Model { public static function boot() { parent::boot(); self::creating(function($model){ // ... code here }); self::created(function($model){...

Does this approach also applies to a limoncellop-app authenticating from another limoncello-app OAuth pacakge?

I saw it was done in WebRoute no need to change in APIRouter, right?

got it. yea. sounds like it was redundant. btw, suppose a single database for users exists (that was a limoncello-php/app) and application for api (crud operation, that was another limoncello-php/app)...

noted. let me try it out and namespace the table to differentiate.

this approach was good. but as more applications created. more different namespaced table will be store on same database. will it be a confusion and lack of isolation?