How do I write this Django model in SQL?

Posted by alex on Stack Overflow See other posts from Stack Overflow or by alex
Published on 2010-04-07T09:44:52Z Indexed on 2010/04/07 9:53 UTC
Read the original article Hit count: 224

Filed under:
|
|
|
|

I want to create a new column. How do I write this in SQL?

class mytable(models.Model):
    created_at = models.DateTimeField(auto_now_add=True)

© Stack Overflow or respective owner

Related posts about django

Related posts about python