All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.snapshot.RestoredDatabaseSnapshot Maven / Gradle / Ivy

There is a newer version: 4.29.1
Show newest version
package liquibase.snapshot;

import liquibase.database.Database;
import liquibase.exception.DatabaseException;
import liquibase.structure.DatabaseObject;

public class RestoredDatabaseSnapshot extends DatabaseSnapshot {

    public RestoredDatabaseSnapshot(Database database) throws DatabaseException, InvalidExampleException {
        super(new DatabaseObject[0], database);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy