Skip to content

Commit 40f1db9

Browse files
committed
Added new django fields types
1 parent e89d9af commit 40f1db9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: snippets/django.snippets

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
snippet auto
1212
${1:FIELDNAME} = models.AutoField(${0})
13+
snippet bigint
14+
${1:FIELDNAME} = models.BigIntegerField(${0})
15+
snippet binary
16+
${1:FIELDNAME} = models.BinaryField(${0})
1317
snippet bool
1418
${1:FIELDNAME} = models.BooleanField(${0:default=True})
1519
snippet char

0 commit comments

Comments
 (0)