Exemplo n.º 1
0
def update_location(location_row, col_name, new_value):
    return tf.update_row_column(location_row, col_name, new_value)
Exemplo n.º 2
0
def update_badge_row(badge_row, col_name, new_value):
    return tf.update_row_column(badge_row, col_name, new_value)
def update_pic_like(picture_like_row, col_name, new_value):
    return tf.update_row_column(picture_like_row, col_name, new_value)
Exemplo n.º 4
0
def edit_comment(comment_row, new_value):
    return tf.update_row_column(comment_row, 'CommentText', new_value)
Exemplo n.º 5
0
def update_user(user_row, col_name, new_value):
    return tf.update_row_column(user_row, col_name, new_value)
Exemplo n.º 6
0
def update_rating(rating_row, col_name, new_value):
    return tf.update_row_column(rating_row, col_name, new_value)
Exemplo n.º 7
0
def update_category(category_row, col_name, new_value):
    return tf.update_row_column(category_row, col_name, new_value)
def update_comment_like(comment_like_row, col_name, new_value):
    return tf.update_row_column(comment_like_row, col_name, new_value)
Exemplo n.º 9
0
def update_review(review_row, col_name, new_value):
    return tf.update_row_column(review_row, col_name, new_value)
Exemplo n.º 10
0
def update_user_has_badge(user_badge_row, col_name, new_value):
    return tf.update_row_column(user_badge_row, col_name, new_value)