mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-15 14:17:55 +03:00
6 lines
165 B
Python
6 lines
165 B
Python
from django.db import models
|
|
|
|
|
|
class MyFakeModel(models.Model):
|
|
cool_name = models.CharField(max_length=50)
|
|
created = models.DateTimeField(auto_now_add=True) |