BusinessLogic.Migrations.DropUniqueIndexOnPlayerNameAlone.Down C# (CSharp) Метод

Down() публичный Метод

public Down ( ) : void
Результат void
        public override void Down()
        {
            CreateIndex("dbo.Player", new[] { "Name" }, unique: true, name: "UniqueNameIndex");
        }
    }
DropUniqueIndexOnPlayerNameAlone