UNPKG

@athenna/database

Version:

The Athenna database handler for SQL/NoSQL.

16 lines (15 loc) 634 B
/** * @athenna/database * * (c) João Lenon <lenon@athenna.io> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ export const COLUMNS_KEY = 'database:columns:options'; export const HAS_ONE_KEY = 'database:hasOne:options'; export const HAS_MANY_KEY = 'database:hasMany:options'; export const HAS_ONE_THROUGH_KEY = 'database:hasOneThrough:options'; export const HAS_MANY_THROUGH_KEY = 'database:hasManyThrough:options'; export const BELONGS_TO_KEY = 'database:belongsTo:options'; export const BELONGS_TO_MANY_KEY = 'database:belongsToMany:options';