private void createPolls() {
final UserAccount userAcc2 = createUserAccount("userAcc2",this.user);
// -5 hours
final Poll poll1 = createDefaultPoll(this.question, this.userAccount, this.initDate.minusHours(5).toDate(), 25L, 15L);
poll1.getHashTags().add(initTag);
getPollDao().saveOrUpdate(poll1);
// -15 hours
Poll pollH = createDefaultPoll(this.question, this.userAccount, this.initDate.minusHours(15).toDate(), 45L, 55L);
pollH.getHashTags().add(initTag);
getPollDao().saveOrUpdate(pollH);
// -25 days
final Poll poll2 = createDefaultPoll(this.question, this.userAccount, this.initDate.minusDays(25).toDate(), 75L, 160L);
poll2.getHashTags().add(initTag);
getPollDao().saveOrUpdate(poll2);
// -25 days
final Poll poll3 = createDefaultPoll(this.question, this.userAccount, this.initDate.minusDays(25).toDate(), 45L, 10L);
poll3.getHashTags().add(initTag);
getPollDao().saveOrUpdate(poll3);
//-6 days
createDefaultPoll(this.question, userAcc2, this.initDate.minusDays(6).toDate(), 78L, 35L);
//-400 days
Poll longTimePoll = createDefaultPoll(this.question, userAcc2, this.initDate.minusDays(400).toDate(), 120L, 63L);
longTimePoll.getHashTags().add(initTag);
getPollDao().saveOrUpdate(longTimePoll);
}