I have a migration file called 001_db.php, and another one called 003_db.php. Now when I run oil r migrate, I get a "Cannot redeclare class \Fuel\Migrations\db in 003_db.php". So, yeah, there are two classes that are \Fuel\Migrations\db - the 001 and the 003 versions. But isn't this how you're supposed to do the migrations? What did I miss?
-----
Edit: looked at the migrations for the Auth class as an example, and saw that they all have to be uniquely named.