LazyRecord\Command\DbCommand\RecreateCommand::execute PHP Method

execute() public method

public execute ( )
    public function execute()
    {
        $dropCommand = $this->createCommand('LazyRecord\\Command\\DbCommand\\DropCommand');
        $dropCommand->options = $this->options;
        $dropCommand->execute();
        parent::execute();
    }
RecreateCommand