Re: Request for help: building a docker/vagrant platform for running Django's test suite

2015-04-21 Thread Tommy Beadle
I have a decent amount of Docker experience. Doing something like this definitely sounds like a reasonable thing to do with Docker. I'd be willing to help out. On Tue, Apr 21, 2015 at 1:25 PM, Tim Graham wrote: > Hi John, > > Kevin and I are going to chat about it

Re: Unneeded index created with unique=True and db_index=False in TextField

2015-04-14 Thread Tommy Beadle
I believe that Postgres will *always* create an index on a column with a UNIQUE constraint. regression=> create table yo (id serial primary key, blah varchar(32) unique); CREATE TABLE regression=> \d yo Table "public.yo" Column | Type | Modifiers