Releases: N7ghtm4r3/Neutron
Releases · N7ghtm4r3/Neutron
v1.0.1
In this version:
- Implemented paginable requests to get the data for the lists
- Created dedicated controller for changeable data, such as profile pic and the currency value
- Integrated EquinoxItemsHelper to execute the batch queries
- Integrated the possibility to edit the revenues and the tickets
- Avoid the duplication of the labels due the integration of the possibility to chose the already created labels
Migration from 1.0.0 to 1.0.1 version:
To correctly migrate from the 1.0.0
to the 1.0.1
you have to follow these simple steps before launch the backend:
- Fill the
dType
field of theusers
table with the NeutronUser value, you can do it with thissql
command:
UPDATE users SET dtype = "NeutronUser";
- Delete the existing
revenue_labels
table (it is required to correcting migrate from the previous version and I know that is a bit boring to retrieve the already created labels) - Edit the default value of the
closing_date
field of thegeneral_revenues
table, you can do it withsql
command:
-- before alter the table
ALTER TABLE `general_revenues` CHANGE `closing_date` `closing_date` BIGINT(20) NULL DEFAULT '-1';
-- after set the default value to the previous tickets which have NULL as default value
UPDATE general_revenues SET closing_date = -1 WHERE closing_date IS NULL;
What's Changed
- E1.0.1 by @N7ghtm4r3 in #1
New Contributors
- @N7ghtm4r3 made their first contribution in #1
Full Changelog: 1.0.0...1.0.1
v. 1.0.0
First release of Neutron released!
Full Changelog: https://github.com/N7ghtm4r3/Neutron/commits/1.0.0