Skip to content

Commit

Permalink
Create new migrations to make change
Browse files Browse the repository at this point in the history
  • Loading branch information
yukitya-1811 committed Jun 29, 2024
1 parent 6748a71 commit 7ef39df
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion corpus/accounts/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class Migration(migrations.Migration):
(
"date_joined",
models.DateTimeField(
default=django.utils.timezone.localtime, verbose_name="date joined"
default=django.utils.timezone.now, verbose_name="date joined"
),
),
("phone_no", models.CharField(max_length=13, unique=True)),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 4.2.7 on 2024-06-29 07:27

import datetime
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('accounts', '0005_alter_executivemember_date_joined_and_more'),
]

operations = [
migrations.AlterField(
model_name='executivemember',
name='date_joined',
field=models.DateTimeField(default=datetime.datetime(2024, 6, 29, 7, 27, 12, 372509, tzinfo=datetime.timezone.utc), verbose_name='Date Joined'),
),
]

0 comments on commit 7ef39df

Please sign in to comment.