import { Knex } from 'knex'; /** * Used for migrations */ export default abstract class BaseSchema { protected dbConnection: Knex; /** * Constructor */ constructor(); }