20 lines
561 B
Python
20 lines
561 B
Python
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('files', '0001_initial'),
|
|
('authentication', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='toolsheduser',
|
|
name='profile_picture',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL,
|
|
related_name='profile_picture_users', to='files.file'),
|
|
),
|
|
]
|
|
|