UUID with support for Model and Entity |
Hi!
I created a small package that makes it easy to work with UUID in CodeIgniter 4 - https://github.com/michalsn/codeigniter4-uuid This package work with different versions of UUID - starting from version 1 and up to version 6 - but everything is integrated into a model class to make it work smoothly. So we basically use it like a "normal" model class. We can also store UUID in the database in a byte format to optimize the used space. Let me get you a small example of how would using UUID as a primary key in our model would look like: PHP Code: <?php Out model have to extend UuidModel instead of Model and that's it. More detailed info is available in the project repo. |
Messages In This Thread |
UUID with support for Model and Entity - by michalsn - 05-20-2020, 11:15 AM
RE: UUID with support for Model and Entity - by JazMagno - 05-26-2020, 02:12 PM
RE: UUID with support for Model and Entity - by michalsn - 06-08-2020, 10:40 AM
|