django_net_ninja/touragency/agency/models.py

14 lines
468 B
Python
Raw Permalink Normal View History

2026-03-14 13:30:39 -06:00
from django.db import models
2026-03-14 13:42:54 -06:00
2026-03-14 13:30:39 -06:00
# Create your models here.
2026-03-14 13:42:54 -06:00
class Tour(models.Model):
origin_country = models.CharField(max_length=64)
destination_country = models.CharField(max_length=64)
nights = models.IntegerField()
price = models.IntegerField()
2026-03-14 15:56:52 -06:00
# This is a string representation of the tour
def __str__(self):
return f"ID:{self.id}: From {self.origin_country} To {self.destination_country}, {self.nights} nights cost ${self.price}"