> 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/drop/column.md).

# Column

Removes a column from a table.

### Command

```ruby
$ eucalypt migration drop column
# Alias/shortened
$ eucalypt m drop column
$ eucalypt m drop c
$ eucalypt m d c
```

### Arguments

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

### Examples

* `$ eucalypt m drop column users email`

  Drops the `email` column from the `users` table.
