Ecto.Migration.drop
You're seeing just the function
drop
, go back to Ecto.Migration module for more information.
Drops one of the following:
- an index
- a table
- a constraint
Examples
drop index("posts", [:name])
drop table("posts")
drop constraint("products", "price_must_be_positive")