Changes between Initial Version and Version 1 of Ticket #29304


Ignore:
Timestamp:
Apr 9, 2018, 9:37:50 AM (6 years ago)
Author:
isergey
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29304 – Description

    initial v1  
    22{{{
    33class Record(models.Model):
    4     id = models.CharField(primary_key=True, max_length=32)
    5     original_id = models.TextField(max_length=2048, blank=True)
    64    hash = models.CharField(max_length=32)
    75    source = models.ForeignKey(Source, on_delete=models.CASCADE)
    8     schema = models.CharField(max_length=32)
    9     session_id = models.BigIntegerField(default=0)
    106    create_date = models.DateTimeField(db_index=True)
    117    update_date = models.DateTimeField(db_index=True)
Back to Top