def save_tag_from_row(tag_row):
    tag = Tag()
    tag.id = tag_row[0]
    tag.name = tag_row[1]
    tag.save()