Sindbad~EG File Manager
<?php
declare(strict_types=1);
use Migrations\AbstractMigration;
class AddMessageToMeetings extends AbstractMigration
{
/**
* Change Method.
*
* More information on this method is available here:
* https://book.cakephp.org/phinx/0/en/migrations.html#the-change-method
* @return void
*/
public function change(): void
{
$table = $this->table('meetings');
$table->addColumn('message', 'text', [
'default' => null,
'null' => true,
]);
$table->update();
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists