@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
JavaScript
/*
* 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')
}