Skip to main content
Module

x/nessie/mod.ts>AbstractMigration

A modular Deno library for PostgreSQL, MySQL, MariaDB and SQLite migrations
Go to Latest
class AbstractMigration
Re-export
Abstract
import { AbstractMigration } from "https://deno.land/x/nessie@2.0.8/mod.ts";

Constructors

new
protected
AbstractMigration(unnamed 0: AbstractMigrationProps<T["client"]>)

Type Parameters

optional
T extends AbstractClient<any> = any

Properties

protected
client: T["client"]

Methods

abstract
down(exposedObject: Info): Promise<void>
abstract
up(exposedObject: Info): Promise<void>