3870-models #975
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix#975
Loading…
Reference in New Issue
No description provided.
Delete Branch "3870-models"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -0,0 +17,4 @@
"version": {
"type": "string"
},
"IsVersionCritical": {
typo: isVersionCritical
@ -0,0 +18,4 @@
"type": "string"
},
"IsVersionCritical": {
"type": "number"
isn't this a boolean?
@ -0,0 +17,4 @@
"machineFk": {
"type": "number"
},
"inTimed": {
in timed, doesn't make sense, inTime can be what you are looking for.
@ -0,0 +20,4 @@
"inTimed": {
"type": "date"
},
"outTimed": {
outTimed doesn't make sense, may be outTime or timeOut is what you are looking for.
@ -2545,2 +2551,4 @@
(4, 2, 0, 20.00, 0.00, NULL, 0, 0.00, 0),
(5, 442, 0, 0.00, 3.05, NULL, 0, 0.00, 0);
INSERT INTO `vn`.`mobileAppVersionControl` (`appName`, `version`, `IsVersionCritical`)
IsVersionCritical looks like a typo.
@ -2547,0 +2558,4 @@
INSERT INTO `vn`.`machine` (`plate`, `maker`, `model`, `warehouseFk`, `departmentFk`, `type`, `use`, `productionYear`, `workerFk`, `companyFk`)
VALUES
('RE-001', 'STILL', 'LTX-20', 60, 23, 'REMOLCADOR ELECTRICO', 'Arrastrar carros', 2020, 103, 442),
fixtures language is english by default
@ -47,2 +47,4 @@
"SSN": {
"type" : "string"
},
"sectorFk": {
it is of good practice to create the relations for foreign keys and their respective models if not created yet.
also the worker model doens't seem to be the best place to allocate such properties.
remove this
@ -48,1 +48,4 @@
"type" : "string"
},
"sectorFk": {
"type" : "number"
remove this prop
LGTM