Merge pull request 'feat(item-itemPackingType): add model and dumpedFixtures' (#794) from 3374-itemPackingType into dev
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
Reviewed-on: #794 Reviewed-by: Carlos Jimenez Ruiz <carlosjr@verdnatura.es>
This commit is contained in:
commit
02bc848b7e
|
@ -47,19 +47,20 @@ TABLES=(
|
||||||
cplusSubjectOp
|
cplusSubjectOp
|
||||||
cplusTaxBreak
|
cplusTaxBreak
|
||||||
cplusTrascendency472
|
cplusTrascendency472
|
||||||
pgc
|
|
||||||
time
|
|
||||||
claimResponsible
|
claimResponsible
|
||||||
claimReason
|
claimReason
|
||||||
claimRedelivery
|
claimRedelivery
|
||||||
claimResult
|
claimResult
|
||||||
ticketUpdateAction
|
|
||||||
state
|
|
||||||
sample
|
|
||||||
department
|
|
||||||
component
|
component
|
||||||
componentType
|
componentType
|
||||||
continent
|
continent
|
||||||
|
department
|
||||||
|
itemPackingType
|
||||||
|
pgc
|
||||||
|
sample
|
||||||
|
state
|
||||||
|
ticketUpdateAction
|
||||||
|
time
|
||||||
volumeConfig
|
volumeConfig
|
||||||
)
|
)
|
||||||
dump_tables ${TABLES[@]}
|
dump_tables ${TABLES[@]}
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"name": "ItemPackingType",
|
||||||
|
"base": "VnModel",
|
||||||
|
"options": {
|
||||||
|
"mysql": {
|
||||||
|
"table": "itemPackingType"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"code": {
|
||||||
|
"type": "string",
|
||||||
|
"id": true
|
||||||
|
},
|
||||||
|
"description": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"acls": [
|
||||||
|
{
|
||||||
|
"accessType": "READ",
|
||||||
|
"principalType": "ROLE",
|
||||||
|
"principalId": "$everyone",
|
||||||
|
"permission": "ALLOW"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue