Skip to content

Create custom metadata for the VersionInfo table

daniellee edited this page Oct 7, 2012 · 3 revisions

By implementing the IVersionTableMetaData interface you can change the defaults for the VersionInfo table. The interface exposes four properties:

  • SchemaName (default is empty)
  • TableName (default is VersionInfo)
  • ColumnName (default is Version)
  • UniqueIndexName (default is UC_Version)

In the same assembly that your migrations are located, create a new class that implements the IVersionTableMetaData interface and decorate the class with the VersionTableMetaData attribute. FluentMigrator will automatically find this and use it instead of the default settings.

A common use case is changing the default schema so that you can have a migration assembly per schema.

Clone this wiki locally