I just began experimenting with FluentMigrator. I noticed that failed migrations are not being rolled back. Has this just not been implemented yet? This seems rather bad because it leaves the database in a broken state. 
For example, the migration below will obviously fail when it tries to add Table1 for a second time (I'm just doing th...
            
           
          
            
            Using FluentMigrator (http://code.google.com/p/fluentmigrator/), the default creation of a Column using .AsString() results in an nvarchar(255).  Is there a simple way (before I modify the FluentMigrator code) to create a column of type nvarchar(MAX)?
...
            
           
          
            
            Are there any tutorials for FluentMigrator? Some "Getting Started..." tutorial would be just awesome. All I was able to find was FluentMigrator.Tests (unit tests), inside FluentMigrator source, which are not as helpful as "Getting Started..." would be.
...
            
           
          
            
            I am shifting my development platform to a virtual machine (using VirtualBox), and have installed Win7, VS2010 and SQL Server Express 2008 R2.  I have a project that uses FluentMigrator to look after the database.
When I (try to) run the initial migration, all console messages come back from FluentMigrator reporting success, but when I ...