from django.db import models

# Create your models here.

class CancelReasons(models.Model):
    id : models.AutoField(primary_key=True)
    title = models.CharField(max_length=255, blank=False, null=False)
    reason_for = models.IntegerField(default=0, choices=((2, 'Customer'), (3, 'Driver')))
    created_at = models.DateTimeField(auto_now_add=True)
    updated_at = models.DateTimeField(auto_now_add=True)

