Skip to content

Commit

Permalink
migration file
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkramaric committed May 15, 2024
1 parent 0b2f5ad commit 8af61ca
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 5.0.6 on 2024-05-15 15:07

import datetime
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('test_app', '0008_alter_mymodel_null_field'),
]

operations = [
migrations.AlterField(
model_name='mymodel',
name='datetime_field',
field=models.DateTimeField(default=datetime.datetime(2011, 1, 11, 11, 11, 11, tzinfo=datetime.timezone.utc)),
),
]

0 comments on commit 8af61ca

Please sign in to comment.