Ecto blob type

I was wondering if there was a blob type in ecto for storing binary files (images for example) in the database table.
i could not find any refrence to it in the ecto docs

2 Likes

You are looking for :binary data type in Ecto, that gets translated to bytea in Postgres :slight_smile:

3 Likes

Have a look at this thread too: Postgresql binary format field in Phoenix/Ecto

1 Like

Thanks :slight_smile:

1 Like