I want to execute some code in a Django model when it is first created. After that whenever it is saved I want to execute some other code. The second task can be easily done by overriding the save() method. How can I do the first task?I want to execute some code in a Django model w