Database Setup
This commit is contained in:
@ -1,3 +1,11 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
class Tour(models.Model):
|
||||
# We need a origin country, destination, number of nights and price of the tour.
|
||||
origin_country = models.CharField(max_length=64)
|
||||
destination_country = models.CharField(max_length=64)
|
||||
number_of_nights = models.IntegerField()
|
||||
price = models.IntegerField()
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user