laravel-ulid
laravel-ulid copied to clipboard
Laravel package for ULID (Universally Unique Lexicographically Sortable Identifier)
This is an automated pull request from [Shift](https://laravelshift.com) to update your package code and dependencies to be compatible with Laravel 11.x. **Before merging**, you need to: - Checkout the `l11-compatibility`...
In migration just write ```$table->ulid('column_name')``` instead of ```$table->char('column_name', 26)```, so devs are not forced to remember that ulid is 26 characters long char type. This PR is backward compatible, means...
Ulid can be stored in more efficient bin column, any support for that?
If records are create too quickly the ordering of this Ulid is not correct. I have added an example of what is being generated with a running integer number. As...
Hello! Huston, i have a problem :) I making a package with some models using ULID Well, problem in in ModelObservers, which overwrites any your magic methods and treir methods....
Please, add support for laravel 11