File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 5
5
- _build
6
6
matrix :
7
7
include :
8
- - elixir : 1.8.0
9
- otp_release : 21.2
8
+ - elixir : 1.11.2
9
+ otp_release : 23.0
10
+ env : MIX_EXS=ci/mix-ecto-3.0.exs
11
+ - elixir : 1.10.4
12
+ otp_release : 22.3
13
+ env : MIX_EXS=ci/mix-ecto-3.0.exs
14
+ - elixir : 1.9.4
15
+ otp_release : 22.3
16
+ env : MIX_EXS=ci/mix-ecto-3.0.exs
17
+ - elixir : 1.8.2
18
+ otp_release : 22.3
10
19
env : MIX_EXS=ci/mix-ecto-3.0.exs
11
20
- elixir : 1.7.4
12
- otp_release : 21.0
21
+ otp_release : 22.3
13
22
env : MIX_EXS=ci/mix-ecto-3.0.exs
14
23
- elixir : 1.6.6
15
24
otp_release : 20.3
Original file line number Diff line number Diff line change @@ -3,7 +3,11 @@ defmodule Ecto.ULID do
3
3
An Ecto type for ULID strings.
4
4
"""
5
5
6
+ # replace with `use Ecto.Type` after Ecto 3.2.0 is required
6
7
@ behaviour Ecto.Type
8
+ # and remove both of these functions
9
+ def embed_as ( _ ) , do: :self
10
+ def equal? ( term1 , term2 ) , do: term1 == term2
7
11
8
12
@ doc """
9
13
The underlying schema type.
You can’t perform that action at this time.
0 commit comments