From 2303b175a0045b53d66f0f33249efd32f78a8b4c Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Tue, 17 May 2016 21:04:40 +0200 Subject: [PATCH] add migration --- shop/migrations/0011_auto_20160517_1902.py | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 shop/migrations/0011_auto_20160517_1902.py diff --git a/shop/migrations/0011_auto_20160517_1902.py b/shop/migrations/0011_auto_20160517_1902.py new file mode 100644 index 00000000..80379637 --- /dev/null +++ b/shop/migrations/0011_auto_20160517_1902.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.2 on 2016-05-17 19:02 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('shop', '0010_auto_20160517_1313'), + ] + + operations = [ + migrations.RemoveField( + model_name='product', + name='public', + ), + migrations.AddField( + model_name='productcategory', + name='public', + field=models.BooleanField(default=True), + ), + ]