24 lines
607 B
Python
24 lines
607 B
Python
|
# Generated by Django 3.0 on 2022-02-05 21:18
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('dockerhubCrawler', '0005_auto_20220205_2102'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='dockerhubcrawler',
|
||
|
name='last_pushed',
|
||
|
field=models.DateTimeField(auto_now=True, null=True),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='dockerhubcrawler',
|
||
|
name='last_updated',
|
||
|
field=models.DateTimeField(auto_now=True, null=True),
|
||
|
),
|
||
|
]
|