---
title: messageActionChatMigrateTo
description: Indicates the chat was [migrated](https://core.telegram.org/api/channel) to the specified supergroup
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messageActionChatMigrateTo  
[Back to constructors index](index.md)



Indicates the chat was [migrated](https://core.telegram.org/api/channel) to the specified supergroup

### Attributes:

| Name     |    Type       | Required | Description |
|----------|---------------|----------|-------------|
|channel\_id|[int](../types/int.md) | Yes|The supergroup it was migrated to|



### Type: [MessageAction](../types/MessageAction.md)


### Example:

```php
$messageActionChatMigrateTo = ['_' => 'messageActionChatMigrateTo', 'channel_id' => int];
```  


Or, if you're into Lua:

```lua
messageActionChatMigrateTo={_='messageActionChatMigrateTo', channel_id=int}

```