waterline-adapter-tests
Version:
Integration tests for waterline adapters
52 lines (45 loc) • 900 B
JavaScript
module.exports = {
tableName: 'apartmentTable',
identity: 'apartment',
connection: 'associations',
primaryKey: 'number',
fetchRecordsOnUpdate: true,
fetchRecordsOnDestroy: false,
fetchRecordsOnCreate: true,
fetchRecordsOnCreateEach: true,
attributes: {
number: {
type: 'string',
required: true,
autoMigrations: {
columnType: 'varchar',
unique: true
}
},
building: {
type: 'string',
autoMigrations: {
columnType: 'varchar'
}
},
payments: {
collection: 'Payment',
via: 'apartment'
},
// Timestamps
updatedAt: {
type: 'number',
autoUpdatedAt: true,
autoMigrations: {
columnType: 'bigint'
}
},
createdAt: {
type: 'number',
autoCreatedAt: true,
autoMigrations: {
columnType: 'bigint'
}
}
}
};