2017-10-22 21:59:10 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.11.6 on 2017-10-23 01:58
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.conf import settings
|
|
|
|
from django.db import migrations, models
|
|
|
|
import django.db.models.deletion
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
2023-08-10 02:52:37 -04:00
|
|
|
("users", "0004_auto_20171023_0143"),
|
2017-10-22 21:59:10 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.RemoveField(
|
2023-08-10 02:52:37 -04:00
|
|
|
model_name="user",
|
|
|
|
name="profiles",
|
2017-10-22 21:59:10 -04:00
|
|
|
),
|
|
|
|
migrations.AlterField(
|
2023-08-10 02:52:37 -04:00
|
|
|
model_name="profile",
|
|
|
|
name="user",
|
|
|
|
field=models.ForeignKey(
|
|
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
|
|
related_name="profiles",
|
|
|
|
to=settings.AUTH_USER_MODEL,
|
|
|
|
),
|
2017-10-22 21:59:10 -04:00
|
|
|
),
|
|
|
|
]
|