11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
import type Client from 'models/Clients/Client'
|
|
|
|
export default interface Migration {
|
|
/**
|
|
* timestamp in UTC
|
|
*/
|
|
date: number
|
|
up(client: Client): Promise<boolean>
|
|
down?(client: Client): Promise<boolean>
|
|
}
|