BExIS.Ext.Model.DB.Migration.Uninstall C# (CSharp) Method

Uninstall() public method

public Uninstall ( ) : bool
return bool
        public bool Uninstall()
        {
            if (BeforeDown())
            {
                if (Down())
                {
                    return AfterDown();
                }
            }
            return false;
        }