UNPKG

@adonisjs/lucid

Version:

- [x] Paginate method - [x] forPage method - [ ] chunk ( removed ) - [ ] pluckAll ( removed ) - [x] withPrefix - [x] transactions - [x] global transactions

19 lines (16 loc) 425 B
'use strict' /* * adonis-lucid * * (c) Harminder Virk <virk@adonisjs.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ module.exports = { HasOne: require('./HasOne'), HasMany: require('./HasMany'), BelongsTo: require('./BelongsTo'), BelongsToMany: require('./BelongsToMany'), HasManyThrough: require('./HasManyThrough') }