raspisms/db/migrations/20210322193953_update_webho...

17 lines
395 B
PHP

<?php
use Phinx\Migration\AbstractMigration;
class UpdateWebhookTypes extends AbstractMigration
{
public function up()
{
$this->execute('ALTER TABLE `webhook` MODIFY `type` ENUM(\'send_sms\', \'receive_sms\', \'inbound_call\')');
}
public function down()
{
$this->execute('ALTER TABLE `webhook` MODIFY `type` ENUM(\'send_sms\', \'receive_sms\')');
}
}