UNPKG

waterline-adapter-tests

Version:
56 lines (49 loc) 1.12 kB
module.exports = { tableName: 'stadiumTable', identity: 'stadium', 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: { columnName: 'nom', type: 'string', autoMigrations: { columnType: 'varchar' } }, teams: { collection: 'Team', through: 'venue', via: 'stadium' }, // Timestamps updatedAt: { type: 'number', autoUpdatedAt: true, autoMigrations: { columnType: 'bigint' } }, createdAt: { type: 'number', autoCreatedAt: true, autoMigrations: { columnType: 'bigint' } } } };