> For the complete documentation index, see [llms.txt](https://eucalypt.gitbook.io/eucalypt/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://eucalypt.gitbook.io/eucalypt/cli/migration/rename/column.md).

# Column

Renames a column.

### Command

```ruby
$ eucalypt migration rename column
# Alias/shortened
$ eucalypt m rename column
$ eucalypt m rename c
$ eucalypt m r c
```

### Arguments

* `[TABLE]` - The name of the table.

* `[OLD]` - The name of the column to change.

* `[NEW]` - The new name of the column.

### Examples

* `$ eucalypt m rename column users emali email`

  Renames the incorrectly spelled `emali` column to `email` on the `users` table.
