I just upgraded django using pip: (pip install -U django==1.7)
    
I ran syncdb, and there something about faked migrations. Everything looked 
normal.

Now, when I run syncdb, though, I see the following:

/usr/local/lib/python2.7/dist-packages/django/contrib/comments/__init__.py:13: 
RemovedInDjango18Warning: django.contrib.comments is deprecated and will be 
removed before Django 1.8.
  warnings.warn("django.contrib.comments is deprecated and will be removed 
before Django 1.8.", RemovedInDjango18Warning)

/usr/local/lib/python2.7/dist-packages/mezzanine/core/managers.py:194: 
RemovedInDjango18Warning: `SearchableManager.get_query_set` method should 
be renamed `get_queryset`.
  class SearchableManager(Manager):

/usr/local/lib/python2.7/dist-packages/mezzanine/core/managers.py:326: 
RemovedInDjango18Warning: `CurrentSiteManager.get_query_set` method should 
be renamed `get_queryset`.
  class CurrentSiteManager(DjangoCSM):

/usr/local/lib/python2.7/dist-packages/django/forms/widgets.py:143: 
RemovedInDjango18Warning: `OwnableAdmin.queryset` method should be renamed 
`get_queryset`.
  .__new__(mcs, name, bases, attrs))

/usr/local/lib/python2.7/dist-packages/mezzanine/core/migrations/0005_auto__chg_field_sitepermission_user__del_unique_sitepermission_user.py:15:
 
RemovedInDjango18Warning: Options.module_name has been deprecated in favor 
of model_name
  user_model_label = '%s.%s' % (User._meta.app_label, 
User._meta.module_name)

/usr/local/lib/python2.7/dist-packages/mezzanine/generic/migrations/0010_auto__chg_field_keyword_slug__chg_field_keyword_title.py:16:
 
RemovedInDjango18Warning: Options.module_name has been deprecated in favor 
of model_name
  user_model_label = '%s.%s' % (User._meta.app_label, 
User._meta.module_name)

/usr/local/lib/python2.7/dist-packages/mezzanine/blog/migrations/0020_auto__add_field_blogpost_created__add_field_blogpost_updated.py:17:
 
RemovedInDjango18Warning: Options.module_name has been deprecated in favor 
of model_name
  user_model_label = '%s.%s' % (User._meta.app_label, 
User._meta.module_name)

Operations to perform:
  Synchronize unmigrated apps: core, generic, galleries, boot, 
filebrowser_safe, sitemaps, compressor, accounts, comments, conf, blog, 
import_export, pages, forms
  Apply all migrations: redirects, sessions, admin, contacts, sites, auth, 
contenttypes
Synchronizing apps without migrations:
  Creating tables...
  Installing custom SQL...
  Installing indexes...
Running migrations:
  No migrations to apply.

Then when I try to migrate the unmigrated apps individually, it fails.

Operations to perform:
  Apply all migrations: redirects
Running migrations:
  No migrations to apply.

When I try to migrate core, I get the following:

Migrations for 'core':
  0001_initial.py:
    - Create model SitePermission

then

Operations to perform:
  Apply all migrations: *(none)*
Running migrations:
  No migrations to apply.

What might be causing "Apply all migrations" to appear as "(none)"?
Why is it that migrations don't seem to want to be applied?
Should I be faking everything, or will that put the DB in an unrecoverable 
state?

-- 
You received this message because you are subscribed to the Google Groups 
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to