johnk
1
Another question about migrations.
When I type:
===========
rake migration VERSION=1
The value in the schema table change to ‘1’ but none of the down
commands are issued to drop the respective tables. Am I doing
something wrong here?
Thanks 
John K.
johnk
2
On 3/21/06, John K. [email protected] wrote:
something wrong here?
Are the drop statements in your migration files for version 2+? If
they’re in your 001 file, then you need to use VERSION=0.
– James
johnk
3
rake migrate VERSION=1
notice it’s ‘migrate’, not ‘migration’
johnk
4
For some reason it is working now. Maybe it was related to my
previous problem. Thanks.
On 21-Mar-06, at 1:47 PM, James L. wrote:
commands are issued to drop the respective tables. Am I doing
something wrong here?
Are the drop statements in your migration files for version 2+? If
they’re in your 001 file, then you need to use VERSION=0.
– James
Rails mailing list
[email protected]
http://lists.rubyonrails.org/mailman/listinfo/rails
John K.