Files
Pulse-API/solution/pulse/countries/models.py
T
2024-02-28 15:40:56 +03:00

15 lines
321 B
Python

from django.db import models
class Country(models.Model):
name = models.CharField(max_length=100)
alpha2 = models.CharField(max_length=2)
alpha3 = models.CharField(max_length=3)
region = models.CharField()
class Meta:
db_table = "countries"
def __str__(self):
return self.name