[mezzanine-users] Changing order status choices triggers a migration

2015-11-03 Thread Chris Trengove
In Cartridge's Order model, the status field has its choices set to the value of SHOP_ORDER_STATUS_CHOICES, which is available for customization in the project settings.py module. But with the new Django migrations, editing this setting triggers a migration, which of course is then stored in Ca

Re: [mezzanine-users] Re: Running migrations I get message that says "No changes detected", "No migrations to apply"

2015-11-03 Thread Geoff P
If anyone ends up here with a similar issue, I think the problem was in settings.py In DATABASES, ENGINE and NAME were empty. I changed the settings accordingly, migrated, and it worked. DATABASES = { "default": { # Add "postgresql_psycopg2", "mysql", "sqlite3" or "oracle".

Re: [mezzanine-users] Re: Running migrations I get message that says "No changes detected", "No migrations to apply"

2015-11-03 Thread Geoff P
Yes. On Tuesday, November 3, 2015 at 7:32:36 PM UTC-8, Eduardo Rivas wrote: > > Have you created an application folder for your models and migrations? > Have you added said application to INSTALLED_APPS in settings.py? > -- You received this message because you are subscribed to the Google Gro

Re: [mezzanine-users] Re: Running migrations I get message that says "No changes detected", "No migrations to apply"

2015-11-03 Thread Eduardo Rivas
Have you created an application folder for your models and migrations? Have you added said application to INSTALLED_APPS in settings.py? -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails

[mezzanine-users] Re: Running migrations I get message that says "No changes detected", "No migrations to apply"

2015-11-03 Thread Geoff P
An update. I noticed that I didn't have a migrations folder in my project. Isn't this supposed to be written automatically? I added one and put an __init__.py file in it and now I don't get the "No changes detected" and "No migrations to apply". But I still get the same error in the browser. S

[mezzanine-users] Running migrations I get message that says "No changes detected", "No migrations to apply"

2015-11-03 Thread Geoff P
Hello, I'm working on a theme (specifically models for the custom home page) and running into an issue. I think I'm having a migration problem but I'm not sure. I updated my model, and when I run makemigrations I get "No changes detected". When I run migrate I get "No migrations to apply". Test

Re: [mezzanine-users] Re: Basic installation issue

2015-11-03 Thread Joseph Mohan
Awesome! On Tuesday, 3 November 2015 16:46:46 UTC, Ryne Everett wrote: > > > finding it hard getting used to using them > > Something I've found very helpful in working with them is automatic > activation with autoenv . (For > zsh users I'd recommend zsh-

Re: [mezzanine-users] Re: Basic installation issue

2015-11-03 Thread Ryne Everett
> finding it hard getting used to using them Something I've found very helpful in working with them is automatic activation with autoenv . (For zsh users I'd recommend zsh-autoenv instead.) On Tue, Nov 3, 2015 at 1

Re: [mezzanine-users] Re: Basic installation issue

2015-11-03 Thread Joseph Mohan
What a tit.. ended up out of my virtualenv.. finding it hard getting used to using them.. Thanks On Tuesday, 3 November 2015 16:01:34 UTC, Ryne Everett wrote: > > Are you sure mezzanine is really installed in the virtualenv? Check in a > repl: > > $ workon my-virtualenv > $ python > >>> import

Re: [mezzanine-users] Re: Basic installation issue

2015-11-03 Thread Ryne Everett
Are you sure mezzanine is really installed in the virtualenv? Check in a repl: $ workon my-virtualenv $ python >>> import mezzanine >>> On Tue, Nov 3, 2015 at 7:26 AM, Joseph Mohan wrote: > I also have the same problem with a virtualenv, any ideas anyone? > > On Sunday, 2 August 2015 23:51:22 U

[mezzanine-users] Re: Basic installation issue

2015-11-03 Thread Joseph Mohan
I also have the same problem with a virtualenv, any ideas anyone? On Sunday, 2 August 2015 23:51:22 UTC+1, Richard Jackson wrote: > > Hi there, > > I'm trying to follow the basic installation guide found here ( > http://mezzanine.jupo.org/docs/overview.html#installation). > > When I run: > > > $ p