mirror of
https://github.com/evgen-app/hackbot.git
synced 2024-12-04 22:03:46 +03:00
19 lines
379 B
Python
19 lines
379 B
Python
# Generated by Django 4.0.3 on 2022-03-19 12:18
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='user',
|
|
name='joined',
|
|
field=models.DateTimeField(auto_now_add=True),
|
|
),
|
|
]
|