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

org.jarbframework.migrations.DatabaseMigrator Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package org.jarbframework.migrations;

import java.sql.Connection;

/**
 * Capable of performing database migrations.
 * @author Jeroen van Schagen
 * @since 28-04-2011
 */
public interface DatabaseMigrator {

    /**
     * Perform a migration on some database connection. The provided
     * connection will automatically be closed post migration.
     * @param connection an open connection to the database.
     */
    void migrate(Connection connection);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy