/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package uk.org.aspellclark.cooksmate.db;
import uk.org.aspellclark.common.db.AbstractDbConstants;
/**
*
* @author andy
*/
public class DbConstants implements AbstractDbConstants {
public String getDbName() {
return "CooksMateDb";
}
public int getDbVersion() {
return 1;
}
/* (non-Javadoc)
* @see uk.org.aspellclark.common.db.AbstractDbConstants#runInDebugMode()
*/
@Override
public Boolean runInDebugMode() {
return true;
}
}
|