Re: locking up development server

2009-08-02 Thread Rusty Greer
On Sun, Aug 2, 2009 at 9:24 PM, Russell Keith-Magee wrote: > > On Mon, Aug 3, 2009 at 12:01 PM, Rusty Greer wrote: >> >> i added a column to one of my tables in my db.  i added the column in >> the model definition, then i went into mysql and added the column with >> what i think is the appropriat

Re: locking up development server

2009-08-02 Thread Russell Keith-Magee
On Mon, Aug 3, 2009 at 12:01 PM, Rusty Greer wrote: > > i added a column to one of my tables in my db.  i added the column in > the model definition, then i went into mysql and added the column with > what i think is the appropriate alter table command. > the command i used was: >  alter table db_

Re: locking up development server

2009-08-02 Thread Malcolm Tredinnick
On Sun, 2009-08-02 at 21:01 -0700, Rusty Greer wrote: > i added a column to one of my tables in my db. i added the column in > the model definition, then i went into mysql and added the column with > what i think is the appropriate alter table command. > the command i used was: > alter table db

locking up development server

2009-08-02 Thread Rusty Greer
i added a column to one of my tables in my db. i added the column in the model definition, then i went into mysql and added the column with what i think is the appropriate alter table command. the command i used was: alter table db_game add column player_info_url varchar(200) not null; the cod