Database migrations for .NET. Based on the idea of Rails ActiveRecord Migrations.
0
votes
2answers
32 views
Migrations don't run on hosting
I'm using MigratorDotNet to manage Rails-style migrations for my web app. I have a workflow where, if I delete all the tables in the database, I can access an installation view that will run ...
0
votes
1answer
36 views
MigratorDotNet: No public classes with the Migration attribute were found
Got next execption trying to applay migration using MigratorDotNet:
No public classes with the Migration attribute were found
Build secceded in general, no config error appear.
I have build config ...
0
votes
1answer
213 views
Separate test data in FluentMigrator
I want to separate the test data (can differ per environment) from the actual database creation.
I know you can use profiles for that purpose, but the way I understand it, you call them once at the ...
2
votes
1answer
169 views
Adding Migrator.NET to an existing production database
I am interested in starting to use Migrator.NET with an existing production database. I have a some initial states that I need to support:
a) Database is at current release (release where we ...
1
vote
0answers
45 views
migrator.net - can you generate schema
I was wondering if there was a way to generate a full schema built in C# and the migrator.net api, once you have a database already created and/or migrations already run?
Thanks,
Craig
0
votes
1answer
152 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
113 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 ...
3
votes
2answers
199 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 ...
0
votes
1answer
83 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 ...
2
votes
0answers
354 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
62 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
2answers
757 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 ...
1
vote
2answers
288 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,
...
2
votes
1answer
561 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.
...
1
vote
1answer
276 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"
...
0
votes
1answer
480 views
Database migration in C# [closed]
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 ...
2
votes
1answer
712 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 ...
2
votes
1answer
397 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 ...
1
vote
1answer
215 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??
8
votes
4answers
671 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. ...
1
vote
1answer
230 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
2
votes
1answer
488 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?
...
0
votes
1answer
265 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 ...
2
votes
3answers
992 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 ...
14
votes
6answers
757 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 ...
3
votes
5answers
37k 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
2answers
356 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 ...
16
votes
4answers
1k 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 ...
1
vote
1answer
243 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, ...
