32 lines
735 B
Python
32 lines
735 B
Python
# Generated by Django 3.0 on 2021-01-07 16:56
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('timemanagement', '0003_historicalbreaks'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='historicalworkday',
|
|
name='agency',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='historicalworkday',
|
|
name='history_user',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='historicalworkday',
|
|
name='user',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='HistoricalBreaks',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='HistoricalWorkday',
|
|
),
|
|
]
|