17 lines
353 B
Python
17 lines
353 B
Python
# Generated manually to drop the Profile model after migration to CustomUser
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recruitment', '0007_migrate_profile_data_to_customuser'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.DeleteModel(
|
|
name='Profile',
|
|
),
|
|
]
|