lib.itmens/legacy/models.py

27 lines
596 B
Python
Raw Normal View History

from django.db import models
class BookLink(models.Model):
old_id = models.IntegerField(db_index=True)
new_uid = models.UUIDField()
class MovieLink(models.Model):
old_id = models.IntegerField(db_index=True)
new_uid = models.UUIDField()
class AlbumLink(models.Model):
old_id = models.IntegerField(db_index=True)
new_uid = models.UUIDField()
2022-12-29 23:49:28 -05:00
class SongLink(models.Model):
old_id = models.IntegerField(db_index=True)
new_uid = models.UUIDField()
class GameLink(models.Model):
old_id = models.IntegerField(db_index=True)
new_uid = models.UUIDField()