changed the way the datasource is initialised for tests (inadvertently)

This commit is contained in:
dsyer
2008-06-22 08:26:56 +00:00
parent 5a995040b2
commit 09d7b58c57
3 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,6 @@
</bean>
</property>
<property name="initScripts" value="org/springframework/batch/item/database/init-foo-schema-hsqldb.sql" />
<property name="destroyScript" value="org/springframework/batch/item/database/destroy-foo-schema-hsqldb.sql" />
</bean>
</beans>

View File

@@ -1,3 +1,6 @@
DROP TABLE T_FOOS if exists;
DROP TABLE T_WRITE_FOOS if exists;
CREATE TABLE T_FOOS (
ID BIGINT NOT NULL,
NAME VARCHAR(45),