In the database, I want to add another object which is a copy of the object below:
Foo.objects.get(pk="foo")
<Foo: test>
Suppose my table has one row. I want to insert the first row object into another row with a different primary key. How can I do that?