2022-12-17 02:04:12 -05:00
|
|
|
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()
|
|
|
|
|
|
|
|
|
2022-12-17 02:04:12 -05:00
|
|
|
class GameLink(models.Model):
|
|
|
|
old_id = models.IntegerField(db_index=True)
|
|
|
|
new_uid = models.UUIDField()
|