UNPKG

waterline-adapter-tests

Version:
57 lines (50 loc) 1.11 kB
module.exports = { tableName: 'alter', connection: 'migratable', migrate: 'alter', primaryKey: 'id', schema: true, 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' } }, age: { type: 'number', autoMigrations: { columnType: 'integer' } }, // Timestamps updatedAt: { type: 'number', autoUpdatedAt: true, autoMigrations: { columnType: 'bigint' } }, createdAt: { type: 'number', autoCreatedAt: true, autoMigrations: { columnType: 'bigint' } } } };