BExIS.Ext.Model.DB.Migration.Install C# (CSharp) Méthode

Install() public méthode

It should be done in conect of a single transaction! or even all the migrations of a version should be wrapped in one transaction
public Install ( ) : bool
Résultat bool
        public bool Install()
        {
            if (BeforeUp())
            {
                if (Up())
                {
                    return AfterUp();
                }
            }
            return false;
        }