26 lines
643 B
Python
26 lines
643 B
Python
# Generated by Django 2.2.24 on 2021-09-22 05:50
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
from django.utils.timezone import utc
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0027_auto_20210414_2116'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='license',
|
|
name='hep_created_at',
|
|
field=models.DateTimeField(default=datetime.datetime(1, 1, 1, 0, 0, tzinfo=utc)),
|
|
),
|
|
migrations.AddField(
|
|
model_name='license',
|
|
name='new_api_raw',
|
|
field=models.TextField(default=''),
|
|
),
|
|
]
|