models.py 197 B

1234567
  1. from django.db import models
  2. class MovedId(models.Model):
  3. model = models.CharField(max_length=255)
  4. old_id = models.CharField(max_length=255)
  5. new_id = models.CharField(max_length=255)