INSTALLED_APPS = INSTALLED_APPS + get_core_apps(['apps.catalogue'])
----
3. Afcorse editing models.py into newly create catalogue dir:
---------------
from django.db import models
from oscar.apps.catalogue.abstract_models import AbstractProduct
class Product(AbstractProduct):
video_url = models.URLField()
from oscar.apps.catalogue.models import * # noqa
---------------
4. I can not get the migrations to populate the DB correctly.
./manage.py makemigrations catalogue
returns
No changes detected in app 'catalogue'
I did notice on https://github.com/django-oscar/django-oscar/blob/master/docs/source/releases/v1.0.rst
---
Warning
The catalogue app has a data migration to determine the product structure. Please double-check it's outcome and make sure to do something similar if you have forked the catalogue app.
---
Any ideas?
Thanks,
Alex
./manage.py oscar_fork_app catalogue /apps
INSTALLED_APPS = INSTALLED_APPS + get_core_apps(['apps.catalogue'])