ironbar-persea/hooks.js
2019-03-05 23:20:26 -06:00

23 lines
411 B
JavaScript

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