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
Added a native UUID generator that produces standards-compliant UUID values, suitable for distributed systems and cross-database compatibility.
1492
+
1493
+
2.**Time-Based ID Generator**
1494
+
Introduced a time-based ID generator that creates sortable, time-ordered identifiers, improving indexing performance and data traceability.
1495
+
1496
+
## What's Changed
1497
+
1498
+
1.**Default Primary Key Generation**
1499
+
The default primary key generation strategy for `VARCHAR` columns has been changed to use the **time-based ID generator**, replacing the previous approach.
1500
+
1501
+
2.**Improved UUID Implementation**
1502
+
Replaced the legacy unique ID generation based on PHP’s `uniqid()` function with a **real UUID implementation**, ensuring better uniqueness guarantees and compliance with UUID standards.
0 commit comments