9 lines
264 B
Python
9 lines
264 B
Python
from django.db import models
|
|
|
|
|
|
# Create your models here.
|
|
class Tour(models.Model):
|
|
origin_country = models.CharField(max_length=64)
|
|
destination_country = models.CharField(max_length=64)
|
|
nights = models.IntegerField()
|
|
price = models.IntegerField()
|