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()
|