Skip to content

Commit

Permalink
Added new django fields types
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirobaina committed Apr 7, 2014
1 parent e89d9af commit 40f1db9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions snippets/django.snippets
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

snippet auto
${1:FIELDNAME} = models.AutoField(${0})
snippet bigint
${1:FIELDNAME} = models.BigIntegerField(${0})
snippet binary
${1:FIELDNAME} = models.BinaryField(${0})
snippet bool
${1:FIELDNAME} = models.BooleanField(${0:default=True})
snippet char
Expand Down

0 comments on commit 40f1db9

Please sign in to comment.