예제 #1
0
  public BBUsersTable() {
    if (BBDB.needsUpdate(BBSettings.dataFolder, getActualTableName(), VERSION)) {
      drop();
    }
    if (!tableExists()) {
      BBLogging.info("Building `" + getTableName() + "` table...");
      createTable();
    } else {
      BBLogging.debug("`" + getTableName() + "` table already exists");
    }

    onLoad();
  }