func (a *AccountRepo) FindVerificationToken(token string) (*model.Verification, error) {
    var v = new(model.Verification)
    sql := `SELECT * FROM verifications WHERE (token = ? and deleted_at IS NULL)`
    _, err := a.db.QueryOne(v, sql, token)
    if err != nil {