View file database/upgrades/20180425184557_rename_chat_table.php

File size: 392B
<?php

use Phinx\Migration\AbstractMigration;

class RenameChatTable extends AbstractMigration
{
    /**
     * Migrate Up.
     */
    public function up()
    {
        $table = $this->table('chat');
        $table->rename('chats');
    }

    /**
     * Migrate Down.
     */
    public function down()
    {
        $table = $this->table('chats');
        $table->rename('chat');
    }
}