Re: db_index not creating indexes with syncdb

2006-08-23 Thread Corey Oordt
try ./manage.py install, it executes sqlall Corey On Aug 23, 2006, at 2:42 PM, [EMAIL PROTECTED] wrote: > > I've got the following: > > class Page(models.Model): > name = models.CharField(maxlength=64, db_index=True, > unique=True) > description = models.TextField(blank=True) >

Re: Proposal: Search Manipulator

2006-08-21 Thread Corey Oordt
Here is my code for the AutomaticSearchManipulator: from django.db.models.manipulators import * from django.db.models.query import Q class AutomaticSearchManipulator (AutomaticManipulator): """ A generic manipulator for searching. It does all the work for "query by example" quer

Re: Additional fields in the many-to-may table?

2006-05-25 Thread Corey Oordt
I was thinking that, but wanted to make sure Thanks for helping a n00b, and creating a great framework! Corey On May 25, 2006, at 10:50 AM, Adrian Holovaty wrote: > > On 5/25/06, Corey <[EMAIL PROTECTED]> wrote: >> Is there a way to add additional fields to the many-to many table, or >> is