module.exports = () => ({ ormCollections: () => { return [ { identity: 'project', datastore: 'default', primaryKey: 'id', attributes: { id: { type: 'number', autoMigrations: { autoIncrement: true, }, }, name: { type: 'string', }, } }, ]; }, });