23 lines
457 B
Python
23 lines
457 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.9.6 on 2016-06-23 16:08
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('user', '0003_auto_20160623_1603'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RemoveField(
|
||
|
model_name='profil',
|
||
|
name='user',
|
||
|
),
|
||
|
migrations.DeleteModel(
|
||
|
name='Profil',
|
||
|
),
|
||
|
]
|