Top "Fluent-migrator" questions

FluentMigrator is a migration framework for the .NET platform that lets you easily create migration-steps that fit very nicely into an automated deployment scenario.

Execute FluentMigrator migrations from code

Are there any tutorials or example code for executing FluentMigrator migrations from within code? Some "Getting Started..." tutorial would be …

c# .net migration data-migration fluent-migrator
Can I create a column of nvarchar(MAX) using FluentMigrator?

Using FluentMigrator, the default creation of a Column using .AsString() results in an nvarchar(255). Is there a simple way (before …

fluent-migrator
Update row data with a new value per row using fluentmigrator

I am using fluentmigrator to add a new column to a table. I then want to update each row in …

c# fluent-migrator
Is it possible to use fluent migrator in application_start?

I'm using fluent migrator to manage my database migrations, but what I'd like to do is have the migrations run …

c# .net asp.net-mvc-3 fluent-migrator
How to drop column with FluentMigrator?

I am using .Net4.5 and C#, I am working on one of database migrations using FluentMigrator. I am able to …

c# migration .net-4.5 fluent-migrator
How to change Table Definition using Fluent Migrator

I'm trying to study Fluent Migrator myself and I'm stuck with a problem I need to change the structure of …

fluent-migrator
run sql scripts with fluentmigrator

I have SQL script: CREATE TABLE TESTTABLE1( ID_TESTTABLE1 NUMBER (18) NOT NULL, TESTTABLE_VALUE1 NUMBER (18), TESTTABLE_KEY1 NUMBER (18)) and use …

c# .net oracle11g database-migration fluent-migrator
Fluent migrator. How to add datetime column with default values as current date?

How can I alter column in fluent migration with default date time value that is current date time? So I …

fluent-migrator