UNPKG

waterline-adapter-tests

Version:
59 lines (51 loc) 1.16 kB
module.exports = { tableName: 'driverWithSchemaTable', meta: { schemaName: 'foo' }, identity: 'driverwithschema', connection: 'associations', primaryKey: 'id', fetchRecordsOnUpdate: true, fetchRecordsOnDestroy: false, fetchRecordsOnCreate: true, fetchRecordsOnCreateEach: true, attributes: { // Primary Key id: { type: Adapter.identity === 'sails-mongo' ? 'string' : 'number', columnName: '_id', autoMigrations: { columnType: Adapter.identity === 'sails-mongo' ? '_stringkey' : '_numberkey', autoIncrement: Adapter.identity === 'sails-mongo' ? false : true, unique: true } }, name: { type: 'string', autoMigrations: { columnType: 'varchar' } }, taxis: { collection: 'taxiwithschema', via: 'drivers', dominant: true }, // Timestamps updatedAt: { type: 'number', autoUpdatedAt: true, autoMigrations: { columnType: 'bigint' } }, createdAt: { type: 'number', autoCreatedAt: true, autoMigrations: { columnType: 'bigint' } } } };