import { Migration } from'./../migration';
/**
* Add a migration package column to the migration table so that
* migrations can be scoped by package
*/exportdeclareclassAddMigrationPackageColumnextendsMigration {
up(): Promise<void>;
down(): Promise<void>;
}