0005_alter_devicemodel_unique_together.py 376 B

1234567891011121314151617
  1. # Generated by Django 4.1.2 on 2025-04-15 22:34
  2. from django.db import migrations
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('bin', '0004_alter_locationmodel_location_type'),
  6. ]
  7. operations = [
  8. migrations.AlterUniqueTogether(
  9. name='devicemodel',
  10. unique_together={('location', 'device_id')},
  11. ),
  12. ]