Zend certified PHP/Magento developer

Magento 1.9: Sql setup Stripe module not execute

I’m installing throught composer the Stripe module, the problem is that when I installed the site, where the module work, crash because can’t find the table in Database.
I don’t know why the setup sql file did’t excecute.

The error is SQLSTATE[42S02]: Base table or view not found: 1146 Table '.stripe_webhooks' doesn't exist

But the module has the script inside the file: stripe/app/code/community/Stripe/Payments/sql/stripe_payments_setup/mysql4-install-1.0.0.php

<?php

$installer = $this;

$installer->startSetup();

$table = $installer->getConnection()->newTable($installer->getTable('stripe_customers'))

When is online, the module is working because it crash without finding the table, but the script above it doesn’t running.

Is there something that I miss?