Why don't I see anything logged for rake db:migrate:extensio

It took me the longest time to figure out that my extension migration
WAS actually working when I ran:

rake db:migrate:extensions

Is there a reason I don’t see the log of tables being created etc when I
run this?
Can this be changed?

On Feb 11, 2007, at 3:59 PM, Jacob B. wrote:

It took me the longest time to figure out that my extension migration
WAS actually working when I ran:

rake db:migrate:extensions

Is there a reason I don’t see the log of tables being created etc
when I
run this?
Can this be changed?

There probably is a reason, but I confess that I don’t know what it
is. I’ll give it a look tomorrow and let you know what I find.

aiwilliams

On Feb 11, 2007, at 10:36 PM, Adam W. wrote:

Can this be changed?

There probably is a reason, but I confess that I don’t know what it
is. I’ll give it a look tomorrow and let you know what I find.

Sorry for the delay, Jacob.

The reason we don’t get any feedback when we run migrations is quite
simple.

ActiveRecord::Migration.suppress_messages { original_migrate }

That was in the Radiant::ExtensionMigrator. I must have put it in
there to silence the output during testing, and never removed it. I
have removed it an checked it in to mental.

aiwilliams

Don’t you just love alias_method_chain? I do.

Sean

Yes, I do. That was another thing I was happy to address :wink: