What's new in EzyPlatform 1.1.6?
This release focuses on access-token structure optimization, improved query performance, and a smoother admin setup experience.
- Added dedicated migration scripts for access-token indexesAdded dedicated migration scripts for access-token indexes, making upgrades easier to manage while reducing risks associated with other database structure changes.
- Optimized indexes for access-token queries and paginationImproved indexes for
ezy_admin_access_tokensandezy_user_access_tokensto enhance query, filtering, and pagination performance. The new indexes better support lookups on:token_type,status,expired_at,admin_id/user_id, andid. - Added unique token constraint for user access tokensAdded a unique key on the
tokencolumn inezy_user_access_tokens, aligning it with the admin token table implementation. This prevents duplicate access-token records and improves data consistency. - Updated default database creation scriptsDefault table creation scripts were updated to include the new access-token indexes automatically, allowing newly deployed environments to use the optimized schema without additional migration steps.
- Fixed access-token alter script logicUpdated the access-token alter script by removing the
DROP COLUMN idoperation, which was no longer valid after the table structure changed from renaming theidcolumn totoken. - Improved admin setup experienceDuring admin setup, users can now press
Enterwhile re-entering their password to submit the form automatically when the submit button is enabled, creating a smoother setup workflow.