mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-13 12:33:23 +02:00
25 lines
723 B
Python
25 lines
723 B
Python
# Generated by Django 3.0.9 on 2020-08-17 13:29
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('attachments', '0003_auto_20190722_1216'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='attachment',
|
|
name='created',
|
|
field=models.DateTimeField(auto_now_add=True, db_index=True,
|
|
verbose_name='created'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='attachment',
|
|
name='modified',
|
|
field=models.DateTimeField(auto_now=True, db_index=True,
|
|
verbose_name='modified'),
|
|
),
|
|
]
|