Search Results

0
votes

Rails: Is it bad to have an irreversible migration?

In a production scenario, you should always make the effort to write and test a reversible migration in the eventuality that you go through it in production, then discover a bug whic …
3
votes

How can I migrate my database with rails to the first revision without dropping the database first?

rake db:migrate VERSION=0 It works even if you're using the newer timestamped migration files. …
0
votes

How are Migration Scripts applied in Rails 2.1 and higher?

The short answer is: don't worry about it. rake db:migrate will attempt to run any migrations that are not found in the schema_migrations table. It doesn't matter if there are newer migrat …