Exemplo n.º 1
0
 /// <summary>
 /// Alters the database schema as specified using the fluent interface on the passed <see cref="IDatabase"/>.
 /// </summary>
 public void Alter(Action<IDatabase> alterDatabase)
 {
     var migration = new AlterSchemaMigration(alterDatabase);
     Alter(migration);
 }
Exemplo n.º 2
0
        /// <summary>
        /// Alters the database schema as specified using the fluent interface on the passed <see cref="IDatabase"/>.
        /// </summary>
        public void Alter(Action <IDatabase> alterDatabase)
        {
            var migration = new AlterSchemaMigration(alterDatabase);

            Alter(migration);
        }