Store webhooks

This commit is contained in:
Juan Pablo Vial
2025-06-03 22:01:03 -04:00
parent 981858f251
commit b10accf602
4 changed files with 32 additions and 0 deletions

View File

@ -23,6 +23,7 @@ final class CreateTokuCustomers extends AbstractMigration
->addColumn('rut', 'string', ['length' => 9])
->addColumn('toku_id', 'string', ['length' => 255])
->addTimestamps()
->addIndex(['rut'], ['unique' => true])
->create();
}
}