fix mark time edge case
This commit is contained in:
parent
26a1bda742
commit
8557635b4d
1 changed files with 20 additions and 0 deletions
|
@ -0,0 +1,20 @@
|
|||
# Generated by Django 4.2.7 on 2023-11-23 03:23
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("journal", "0019_alter_collection_edited_time_and_more"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddConstraint(
|
||||
model_name="shelflogentry",
|
||||
constraint=models.UniqueConstraint(
|
||||
fields=("owner", "item", "timestamp", "shelf_type"),
|
||||
name="unique_shelf_log_entry",
|
||||
),
|
||||
),
|
||||
]
|
Loading…
Add table
Reference in a new issue