[Solved] My Status object is not saving in Django


I told you before, you need to read the documentation and follow the tutorial. This is not the way to set a default value for a model’s field. Please go through the documentation and tutorial at https://docs.djangoproject.com/en/1.5/ If you run into problems during it, come back and ask questions, but if you continue to things incorrectly you are just forming bad habits.


I realize that the original content may seem aggressive, that was not the intent. I just want to prevent you from doing things your way as opposed to the way they are designed to be done and wasting tons of your time in the process (I’ve done it before). That being said, I will try and demonstrate how the designers of django would most likely have wanted you to set up your model.

class Status(models.Model):
    status = models.CharField(max_length=200, null=True, blank=True)
    time = models.DateTimeField('date published', default=timezone.datetime.min)

As you can see, there is no __init__ used when creating models. You simply give it fields as properties. Each field type has several options to set things like default values, max_length, etc…

3

solved My Status object is not saving in Django