/** * ObjectQL * Copyright (c) 2026-present ObjectStack Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ interface MigrateOptions { config?: string; dir?: string; } interface MigrateCreateOptions { name: string; dir?: string; } interface MigrateStatusOptions { config?: string; dir?: string; } /** * Run pending migrations */ export declare function migrate(options: MigrateOptions): Promise; /** * Create a new migration file with boilerplate code */ export declare function migrateCreate(options: MigrateCreateOptions): Promise; /** * Show migration status - displays pending and completed migrations * @param options - Configuration options including config path and migrations directory */ export declare function migrateStatus(options: MigrateStatusOptions): Promise; export {};