9 lines
199 B
Python
9 lines
199 B
Python
from django.db import models
|
|
|
|
|
|
class Application(models.Model):
|
|
name = models.CharField(max_length=200)
|
|
url = models.CharField(max_length=20)
|
|
|
|
def __str__(self):
|
|
return self.name
|