Where can I find a list over supported DB/Ecto/Models data types

Where can I find a list of data types that can be used under migrations etc…

1 Like

https://hexdocs.pm/ecto/Ecto.Schema.html and scroll to Primitive Types

5 Likes

@sudostack Thank you very much.

1 Like

For note, some adaptors can supports others that are not in that list, like the Postgrex adapter supports a few postgresql-specific ones. :slight_smile:

3 Likes