luanpoppe
initial commit
e63103b
raw
history blame
208 Bytes
from django.db import models
# Create your models here.
class EndpointTesteModel(models.Model):
teste = models.CharField(blank=False, max_length=300)
def __str__(self):
return self.teste