getTable('talk_attendees'); if (!$table->hasColumn('phone_number')) { $table->addColumn('phone_number', Types::STRING, [ 'notnull' => false, 'default' => '', 'length' => 255, ]); $table->addColumn('call_id', Types::STRING, [ 'notnull' => false, 'default' => '', 'length' => 255, ]); return $schema; } return null; } }