module.exports = {
tableName: 'travelogue_poi_name',
attributes: {
id: { type: 'number', autoIncrement: true, },
title: {
type: 'string'
},
sortable: {
type: 'string'
},
citation: {
type: 'string'
},
poi: {
model: 'TraveloguePoi'
},
},
};