LazyRecord\Command\SchemaCommand::execute PHP Method

execute() public method

public execute ( )
    public function execute()
    {
        $args = func_get_args();
        $buildCommand = $this->getCommand('build');
        $buildCommand->options = $this->options;
        $buildCommand->executeWrapper($args);
        $diffCommand = $this->createCommand('LazyRecord\\Command\\DiffCommand');
        $diffCommand->options = $this->options;
        $diffCommand->executeWrapper(array());
        // $this->logger->info('Usage: schema [build|sql|list]');
    }