Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/ecto/migration.ex
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ defmodule Ecto.Migration do
For the rest of this document, we will cover the migration APIs
provided by Ecto. For a in-depth discussion of migrations and how
to use them safely within your application and data, see the
[Safe Ecto Migrations guide](https://fly.io/phoenix-files/safe-ecto-migrations/).
[Safe Ecto Migrations guide](https://github.com/fly-apps/safe-ecto-migrations).

## Mix tasks

Expand Down Expand Up @@ -215,7 +215,7 @@ defmodule Ecto.Migration do
```

Now, when you run `mix format`, the formatter should apply Ecto's custom rules when formatting
your migrations (e.g. no brackets are automatically added when creating columns with `add/3`).
your migrations (e.g. no brackets are automatically added when creating columns with `add/3`).

## Repo configuration

Expand Down Expand Up @@ -405,7 +405,7 @@ defmodule Ecto.Migration do

## Additional resources

* The [Safe Ecto Migrations guide](https://fly.io/phoenix-files/safe-ecto-migrations/)
* The [Safe Ecto Migrations guide](https://github.com/fly-apps/safe-ecto-migrations)

"""

Expand Down Expand Up @@ -1627,7 +1627,7 @@ defmodule Ecto.Migration do
end
```

See the [Safe Ecto Migrations guide](https://fly.io/phoenix-files/safe-ecto-migrations/) for an
See the [Safe Ecto Migrations guide](https://github.com/fly-apps/safe-ecto-migrations) for an
in-depth explanation of the benefits of this approach.
"""
def constraint(table, name, opts \\ [])
Expand Down
Loading