MigSharp
MigSharp copied to clipboard
Mig# (MigSharp) is a .NET framework for database migrations and versioning
The Nuget Package for version 4.0.1 seems to be missing the command line tools.
I would like to have a a feature request to add **ROWGUIDCOL** flag when creating table. This flag is used for replication in SqlServer. Example SQL: ``` CREATE TABLE MyTable(...
I want to use cascade on update constraint, but i don't find this method in migsharp. how to solve this problem? @dradovic
At this moment I can only check existence like this: schema.Alter(db => db.Tables["tabelname"].DropIfExists()); So it's always being dropped. But I want to check if it's there. If Not, create the...
Cannot create columns of type DbType.Xml when using SqlServer2012 provider. The error message I get is: System.InvalidOperationException: Cannot execute the migration(s) as there are validation errors: Migration 'Migrations.Migration9' uses the...
In the AsIdentity() Method it would useful to have parameters for MinValue, Start With and Increment
In some databases there is a need to have a kind of "mask" in the identity for the inserted row.