updade from Atlas repo

This commit is contained in:
Luciano Ramalho
2021-05-21 18:56:12 -03:00
parent c518bf851e
commit 8a330d822b
120 changed files with 2190 additions and 1184 deletions

View File

@@ -0,0 +1,5 @@
class models:
class Model:
"nothing to see here"
class IntegerField:
"nothing to see here"

View File

@@ -0,0 +1,13 @@
#!/usr/bin/env python3
from fakedjango import models
class Ox(models.Model):
horn_length = models.IntegerField()
class Meta:
ordering = ['horn_length']
verbose_name_plural = 'oxen'
print(Ox.Meta.__name__)
print(Ox.Meta.__qualname__)