
ruby-sequel - issue #268
Migrations dont have a zero version - cant roll all the way back
What steps will reproduce the problem? 1. Create a migration numbered 1 (or more) 2. Use the bin/sequel command with "-m dir" to migrate forward 3. Try to use the bin/sequel command with "-m dir -M 0" to get an empty database ... 4. nothing happens
What is the expected output? What do you see instead? Expecting the database tables be dropped, like the migration file says in "def down"
What version of the product are you using? On what operating system? tag 3.0.0 - commit 10f69a2bd22e39ba03f4687af196cd476e88d162 mac os x 10.5.7
Please provide any additional information below. when i was using rails and activerecord, migrating down to zero was a great way to know that all the migrations are okay both upward and downward - and did not require additional commands to drop and re-create databases.
Comment #1
Posted on Jun 2, 2009 by Grumpy Rabbithmm, it didn't work when i had more than one create_table in the 001 migration and it failed in the middle ... but generally it does work, so sorry - my bad.
maybe each migration should be inside a transaction?
(using mysql)
Comment #2
Posted on Jun 2, 2009 by Happy BearMySQL doesn't allow transactional schema changes, and I think other databases might have problems with them too. You can always use Database#transaction manually in a migration if you want a certain part to be transactional.
Status: Invalid