You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
429 B
JavaScript
23 lines
429 B
JavaScript
5 years ago
|
module.exports = [{
|
||
|
mapId: 'shipmentMap',
|
||
|
idProperty: 'uuid',
|
||
|
properties: [
|
||
|
'date',
|
||
|
'description'
|
||
|
],
|
||
|
collections: [
|
||
|
{name: 'stockchanges', mapId: 'stockchangeBareMap', columnPrefix: 'stockchange_'}
|
||
|
]
|
||
|
},{
|
||
|
mapId: 'stockchangeBareMap',
|
||
|
idProperty: 'uuid',
|
||
|
properties: [
|
||
|
'type',
|
||
|
'direction',
|
||
|
'change'
|
||
|
],
|
||
|
associations: [
|
||
|
{name: 'item', mapId: 'itemMap', columnPrefix: 'item_'}
|
||
|
]
|
||
|
}]
|