23 lines
462 B
Python
23 lines
462 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.22 on 2019-08-09 21:17
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0026_auto_20190809_0802'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='request',
|
|
name='user',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='Request',
|
|
),
|
|
]
|