Removed all create table statements.

This commit is contained in:
Jonathan Williams 2015-10-09 21:02:35 -06:00
parent 611fb88f15
commit 512e08af19
3 changed files with 4 additions and 2 deletions

View File

@ -24,7 +24,7 @@ public class BenefitManagerRepository extends RepositoryBase
@Override
protected void initialize()
{
executeUpdate(CREATE_BENEFIT_TABLE);
//executeUpdate(CREATE_BENEFIT_TABLE);
}
@Override

View File

@ -47,9 +47,11 @@ This will be used to determine if staff are handling
@Override
protected void initialize()
{
/*
executeUpdate(CREATE_TICKET_TABLE);
executeUpdate(CREATE_HANDLER_TABLE);
executeUpdate(CREATE_REPORTERS_TABLE);
*/
}
@Override

View File

@ -31,7 +31,7 @@ public class PasswordRepository extends RepositoryBase
@Override
protected void initialize()
{
executeUpdate(CREATE_SERVER_PASSWORD_TABLE);
//executeUpdate(CREATE_SERVER_PASSWORD_TABLE);
}
@Override