mirror of
https://github.com/Rushilwiz/pushup-contest.git
synced 2025-04-09 21:20:15 -04:00
24 lines
588 B
Python
24 lines
588 B
Python
# Generated by Django 3.1.2 on 2020-10-19 08:07
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0004_auto_20201019_0359'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='profile',
|
|
name='first_name',
|
|
field=models.TextField(blank=True, max_length=25, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='profile',
|
|
name='last_name',
|
|
field=models.TextField(blank=True, max_length=25, null=True),
|
|
),
|
|
]
|