From e3b69def6ce09d8a240d3d0bcecf84efc51a6194 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lex=20Hermida?= Date: Sun, 10 Jun 2018 22:12:36 +0200 Subject: [PATCH] Alter verbose name read_new_terms on user --- .../migrations/0027_auto_20180610_2011.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 taiga/users/migrations/0027_auto_20180610_2011.py diff --git a/taiga/users/migrations/0027_auto_20180610_2011.py b/taiga/users/migrations/0027_auto_20180610_2011.py new file mode 100644 index 00000000..e9f00a88 --- /dev/null +++ b/taiga/users/migrations/0027_auto_20180610_2011.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.2 on 2018-06-10 20:11 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('users', '0026_auto_20180514_1513'), + ] + + operations = [ + migrations.AlterField( + model_name='user', + name='read_new_terms', + field=models.BooleanField(default=False, verbose_name='new terms read'), + ), + ]