Changes between Initial Version and Version 1 of Ticket #29424


Ignore:
Timestamp:
May 21, 2018, 8:29:49 AM (6 years ago)
Author:
Adrian Castellanos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29424 – Description

    initial v1  
    33{{{
    44class Campaign(models.Model):
    5     start_stay_date = models.DateTimeField(null=True, blank=True)
    6     end_stay_date = models.DateTimeField(null=True, blank=True)
     5    start_date = models.DateTimeField(null=True, blank=True)
     6    end_date = models.DateTimeField(null=True, blank=True)
    77}}}
    88
Back to Top