db = $wpdb; $this->configuration = $configuration; } /** * Get the plugin version when the changes were made. */ abstract public function get_version(): string; /** * Run the migration. * * @throws \Throwable */ abstract public function run(): void; }