From fa49ba8090b2167c1a48a11a894a99306343938b Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 2 Aug 2017 16:15:24 +0200 Subject: Update migrations --- .../migrations/0003_auto_20170802_1557.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 archaeological_warehouse/migrations/0003_auto_20170802_1557.py (limited to 'archaeological_warehouse/migrations') diff --git a/archaeological_warehouse/migrations/0003_auto_20170802_1557.py b/archaeological_warehouse/migrations/0003_auto_20170802_1557.py new file mode 100644 index 000000000..90d67bc46 --- /dev/null +++ b/archaeological_warehouse/migrations/0003_auto_20170802_1557.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('archaeological_warehouse', '0002_auto_20170414_2123'), + ] + + operations = [ + migrations.AlterModelOptions( + name='warehouse', + options={'verbose_name': 'Warehouse', 'verbose_name_plural': 'Warehouses', 'permissions': (('view_warehouse', 'Can view all Warehouses'), ('view_own_warehouse', 'Can view own Warehouse'), ('add_own_warehouse', 'Can add own Warehouse'), ('change_own_warehouse', 'Can change own Warehouse'), ('delete_own_warehouse', 'Can delete own Warehouse'))}, + ), + ] -- cgit v1.2.3