More informative error message.

This commit is contained in:
Michael Bayne
2007-02-18 21:41:20 +00:00
parent 0a3ac07001
commit 84c842aeeb
@@ -50,7 +50,7 @@ public abstract class EntityMigration extends Modifier
public int invoke (Connection conn) throws SQLException {
if (!JDBCUtil.tableContainsColumn(conn, _tableName, _columnName)) {
// we'll accept this inconsistency
log.warning("Column drop appears already performed.");
log.warning(_tableName + "." + _columnName + " already dropped.");
return 0;
}