Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does fluentmigrator work with SQL Server 2012?

Does the current iteration of fluentmigrator work with SQL Server 2012? Its not listed under the supported databases.

like image 771
user1663571 Avatar asked Sep 11 '12 17:09

user1663571


1 Answers

There is no official support for Sql Server 2012 yet. But it should work if you specify SqlServer2008 as the database type. The differences between Sql Server 2005, 2008 and 2012 are not so significant when using FluentMigrator (Sql Server 2000 is a different story). Some features like the new sequence object have no support so in the meantime will have to be run using Execute.Sql.

UPDATE: I tested FluentMigrator against Sql Server 2012 Express with database type specified as SqlServer2008 and it worked fine.

UPDATE: FluentMigrator now officially supports Sql Server 2012 and Sequences.

like image 177
Daniel Lee Avatar answered Jan 04 '23 06:01

Daniel Lee