diff --git a/smash/web/migrations/0122_remove_worker_appointments.py b/smash/web/migrations/0122_remove_worker_appointments.py new file mode 100644 index 0000000000000000000000000000000000000000..b2df6305c497a1a49f0ac64d872f67c3c9d75d29 --- /dev/null +++ b/smash/web/migrations/0122_remove_worker_appointments.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2018-10-10 12:29 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('web', '0121_auto_20181003_1256'), + ] + + operations = [ + migrations.RemoveField( + model_name='worker', + name='appointments', + ), + ]