DjangoのModelメモ

#新規
foo = Foo(name="foo", title="bar")
foo.save()
#更新
foo.name = "1234"
foo.save()

Djangoメモ