From 98b71e42ec94e2e0ef3937febf38442d28200107 Mon Sep 17 00:00:00 2001 From: Cesar Carvalho Date: Tue, 18 Dec 2018 16:40:35 -0200 Subject: [PATCH] migration --- .../0029_remove_appconfig_relatorios_atos.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 sapl/base/migrations/0029_remove_appconfig_relatorios_atos.py diff --git a/sapl/base/migrations/0029_remove_appconfig_relatorios_atos.py b/sapl/base/migrations/0029_remove_appconfig_relatorios_atos.py new file mode 100644 index 000000000..fa06b23ac --- /dev/null +++ b/sapl/base/migrations/0029_remove_appconfig_relatorios_atos.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.8 on 2018-12-18 18:40 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('base', '0028_appconfig_estatisticas_acesso_normas'), + ] + + operations = [ + migrations.RemoveField( + model_name='appconfig', + name='relatorios_atos', + ), + ]