Oops, we'll be needing these.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1727 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2005-11-04 23:03:41 +00:00
parent 03344a7938
commit b92cd64617
@@ -74,7 +74,7 @@ public class SimpleRepository extends Repository
public Object invoke (Connection conn, DatabaseLiaison liaison) public Object invoke (Connection conn, DatabaseLiaison liaison)
throws SQLException, PersistenceException throws SQLException, PersistenceException
{ {
migrateSchema(); migrateSchema(conn, liaison);
return null; return null;
} }
}); });
@@ -323,7 +323,7 @@ public class SimpleRepository extends Repository
* JORARepository} introspect on the schema to match it up to associated * JORARepository} introspect on the schema to match it up to associated
* Java classes). * Java classes).
*/ */
protected void migrateSchema () protected void migrateSchema (Connection conn, DatabaseLiaison liaison)
throws SQLException, PersistenceException throws SQLException, PersistenceException
{ {
} }