mirror of
https://github.com/Rushilwiz/NewViewsNews.git
synced 2025-04-18 10:30:16 -04:00
19 lines
427 B
Python
19 lines
427 B
Python
# Generated by Django 3.1 on 2020-08-15 15:30
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0003_auto_20200815_0302'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='profile',
|
|
name='profile_pic',
|
|
field=models.ImageField(default='default-pfp.jpg', upload_to='profile_pics'),
|
|
),
|
|
]
|