node-pg-migrate
Version:
PostgreSQL database migration management tool for node.js
9 lines (8 loc) • 423 B
TypeScript
import type { MigrationOptions } from '../../types';
import type { Name } from '../generalTypes';
import type { SequenceOptions } from './shared';
export interface AlterSequenceOptions extends SequenceOptions {
restart?: number | true;
}
export type AlterSequence = (sequenceName: Name, sequenceOptions: AlterSequenceOptions) => string;
export declare function alterSequence(mOptions: MigrationOptions): AlterSequence;