sintonia/api/libretimeapi/models/countries.py
Kyle Robbertze 2df0189a90 add API v2
2021-05-14 13:04:46 +02:00

11 lines
241 B
Python

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
db_table = 'cc_country'