module.exports = { tableName: 'users', attributes: { name: 'string', password: { type: 'string', minLength: 4, required: true }, bio: 'string', email: { type: 'email', required: true }, cloudinary_public_id: 'string', accountRoles: { collection: 'accountRole', via: 'users', through: 'accountroleuser' } } };