Database migrations for .NET. Based on the idea of Rails ActiveRecord Migrations. Supported Databases MySQL Oracle (not well tested?) PostgreSQL SQLite SQL Server Writing Migrations Some Example Migrations
16
votes
4answers
976 views
Do Fluent NHibernate and migratordotnet play nicely together?
I love Fluent NHibernate for building my DBs and so far haven't found a restriction that has halted me in my tracks.
However on my current project I expect to release to production very early in the ...
13
votes
6answers
490 views
How do I test database migrations?
I'm using Migrator.NET to write database migrations for the application. Marc-André Cournoyer wrote:
Like any code in your application you
must test your migrations. Ups and downs code. Do it ...
7
votes
4answers
392 views
.NET migrations: Setup and migrate multiple databases at runtime
Brief introduction:
I have this ASP.NET Webforms site with the particularity that it doesn't have only 1 database, it has many.
Why? Because you can create new "instances" of the site on-the-fly. ...
3
votes
2answers
122 views
Migratordotnet : How to check if a migration is pending?
I want stop my Build process through MSBuild, if there is pending migrations.
But I don't want to trigger the Migrate target while building my project.
So, How can I check only pending migrations ...
2
votes
1answer
258 views
Generate initial database migration script from existing schema
I have a huge pre-existing database that I'd like to bring under version control using Migrator.NET for migration scripts and I don't like keeping the MDF file around just for the existing schema.
...
2
votes
1answer
220 views
DB2 REORG TABLE from client side with Migrator.NET
I'm using Migrator.NET with a DB2 database and my current migration executes an ALTER TABLE statement, which causes the table to go into the "reorg pending state". This state requires the ...
2
votes
3answers
726 views
database migration code generator
I want to introduce database migrations into my project and would like to be able to generate my initial migration scripts from the database. I was wondering if there are any code generation tools ...
2
votes
4answers
25k views
Two different assembly versions “The located assembly's manifest definition does not match the assembly reference”
I have a project that I am working on that requires the use of the Mysql Connector for NHibernate, (Mysql.Data.dll). I also want to reference another project (Migrator.NET) in the same project. The ...
1
vote
1answer
182 views
How to migrate to specific version using Migrator.NET
Is there any way to rollback to a specific version using Migrator.NET?
I'm running migrations on a SQL Server 2005 database using MSBuild;
"C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe"
...
1
vote
1answer
395 views
Migratordotnet creating initial migration
I'm trying to use migratordotnet for existing database. My database has around 100 tables and I'm trying to generate initial migration.
I've tried using
C:\migrations>Migrator.Console.exe ...
1
vote
1answer
114 views
MigratorDotNet and Text Datatype on SQL Server 2008
I am using migratordotnet to sync my SQLServer 2008 database and need to create a column of type Text...
Am at a bit of a loss as to how to do this, as there is no System.Data.DbType.Text??
1
vote
1answer
124 views
How do you add indexes to databases with MigratorDotNet?
Can someone point me in the right direction for creating indexes when using MigratorDotNet?
I have some tables which need multi column indexes.
Thanks
1
vote
1answer
388 views
MitratorDotNet (Migrator.Net) - Can I use with just bare SQL up/down migration files?
Could I use migrator.net bare migration framework and just have a set of SQL files to do the upgrade/downgrade? i.e. just use the framework to check database version and which scripts to run etc?
...
1
vote
2answers
275 views
Migrator.net drop table in Up(), what to do in Down()?
I have Migrator.net implemented in my project and I am removing a table from the current schema. My Up() simply contains Database.RemoveTable("FooTable"). But now I'm at a bit of a loss as to what I'm ...
1
vote
1answer
175 views
How do you tell if your migrations are up to date with migratordotnet?
I'm using migratordotnet to manage my database migrations. I'm running them on application setup like this, but I would also like to check on application startup that the migrations are up to date, ...
0
votes
1answer
63 views
Is it possible to use EF codefirst database initialisers in Migrator .NET migrations?
I'm using Migrator.NET to manage schema changes on our production environment. Because I've been using EF code-first, all development to the database has been incremental to the code-first classes and ...
0
votes
1answer
55 views
Migrator.NET - running SQL after schema migration is complete
I would like to run some SQL after the schema migration has been performed.
Some points:
If I execute the SQL during the Up function call, it is not executing with the latest schema version because ...
0
votes
1answer
46 views
Migratordotnet : How to write a migration class with VB.net?
I got all C# implementations on Google, so I converted it to VB.Net, but I am not able to convert 1 line where it gives error.
My Class :
Imports Migrator.Framework
[Migration(1)] ' Gives ...
0
votes
0answers
135 views
Mature migratordotnet alternative
I'm looking for a database migration framework (supporting most used database engine) for c# like migratordotnet that I'm actually use.
Is this the only "mature" choice?
update
I've found also:
...
0
votes
1answer
38 views
Database Class Missing for MigratorDotNet
According to the Migrator.net Quick Start Tutorial, I'm supposed to invoke the Database class to invoke the migration, a la Database.CreateTable(...).
Problem is, I don't have any Database class in ...
0
votes
1answer
443 views
c#: Fluent Migrator/MigSharp/migratordotnet support version numbering with Application.ProductVersion in C# code?
I am very interested in using one of the products to do migration but not only in the database but also the file system etc.
My initial thought was i would love to read the ...
0
votes
1answer
153 views
How do I add new column with default value in Migrator.Framework in C#?
I am using code similar to the following:
Database.AddColumn(
"TableName",
new Column(
"ColumnName",
DbType.String,
...
0
votes
0answers
264 views
Database migration in C#
What is everyone here using for database migration in C#?
Right now it looks like the only active (somewhat) developed tools in .NET are Migrator.NET and SubSonic's.
I'm having issues with ...
0
votes
0answers
38 views
Selfmade RSS reader - which control?
I develope an application in C#.Net 2.0, Windows.
The App has a RSS Feed Reader for specific sites (to collect the biggest news).
I found a very nice DLL for this in which I can very easy read the ...
0
votes
1answer
199 views
how can I call MsBuild.exe within a ClickOnce winforms app and known the correct path? (i.e. it runs on a users machine)
I want to run MSBuild on a users PC as part of a WinForms ClickOnce deployment. That is after the application is downloaded and run (via clickonce) the application needs to kick off an MsBuild to ...