7 lines
No EOL
178 B
Python
7 lines
No EOL
178 B
Python
from django.db import models
|
|
|
|
# Create your models here.
|
|
|
|
class OkService(models.Model):
|
|
name = models.CharField(max_length=30)
|
|
province = models.CharField(max_length=30) |