sintonia/api/libretime_api/models/countries.py

11 lines
240 B
Python
Raw Normal View History

2020-01-30 14:47:36 +01:00
from django.db import models
class Country(models.Model):
isocode = models.CharField(primary_key=True, max_length=3)
name = models.CharField(max_length=255)
class Meta:
managed = False
2021-05-27 16:23:02 +02:00
db_table = "cc_country"