-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathecto_migration_default.ex
89 lines (72 loc) · 2.07 KB
/
ecto_migration_default.ex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
defprotocol EctoMigrationDefault do
@moduledoc """
Allows configuring how values are translated to default values in migrations.
Still a work in progress, but covers most standard values aside from maps.
"""
@fallback_to_any true
@doc "Returns the text (elixir code) that will be placed into a migration as the default value"
def to_default(value)
end
defimpl EctoMigrationDefault, for: Any do
require Logger
def to_default(value) do
Logger.warning("""
You have specified a default value for a type that cannot be explicitly
converted to an Ecto default:
`#{inspect(value)}`
The default value in the migration will be set to `nil` and you can edit
your migration accordingly.
To prevent this warning, implement the `EctoMigrationDefault` protocol
for the appropriate Elixir type in your Ash project, or configure its
default value in `migration_defaults` in the postgres section. Use `\\\"nil\\\"`
for no default.
""")
"nil"
end
end
defimpl EctoMigrationDefault, for: Integer do
def to_default(value) do
to_string(value)
end
end
defimpl EctoMigrationDefault, for: Float do
def to_default(value) do
to_string(value)
end
end
defimpl EctoMigrationDefault, for: Decimal do
def to_default(value) do
~s["#{value}"]
end
end
defimpl EctoMigrationDefault, for: BitString do
def to_default(value) do
inspect(value)
end
end
defimpl EctoMigrationDefault, for: DateTime do
def to_default(value) do
~s[fragment("'#{to_string(value)}'")]
end
end
defimpl EctoMigrationDefault, for: NaiveDateTime do
def to_default(value) do
~s[fragment("'#{to_string(value)}'")]
end
end
defimpl EctoMigrationDefault, for: Date do
def to_default(value) do
~s[fragment("'#{to_string(value)}'")]
end
end
defimpl EctoMigrationDefault, for: Time do
def to_default(value) do
~s[fragment("'#{to_string(value)}'")]
end
end
defimpl EctoMigrationDefault, for: Atom do
def to_default(value) when value in [nil, true, false], do: inspect(value)
def to_default(value) do
inspect(to_string(value))
end
end