#create row in table mysite_blog
b = Blog(name='Beatles Blog', tagline='All the latest Beatles news.')
b.save()
#or
Blog.objects.create(name='Beatles Blog', tagline='All the latest news')
###########################################################################
#update column
b = Blog.objects.get(pk=1)
b.name = 'Something'
b.save()
###########################################################################