We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bac4c4 commit 55a1acbCopy full SHA for 55a1acb
lib/mix/tasks/ecto.create.ex
@@ -8,7 +8,8 @@ defmodule Mix.Tasks.Ecto.Create do
8
quiet: :boolean,
9
repo: [:string, :keep],
10
no_compile: :boolean,
11
- no_deps_check: :boolean
+ no_deps_check: :boolean,
12
+ timezone: :string
13
]
14
15
@aliases [
@@ -38,6 +39,10 @@ defmodule Mix.Tasks.Ecto.Create do
38
39
* `--quiet` - do not log output
40
* `--no-compile` - do not compile before creating
41
* `--no-deps-check` - do not compile before creating
42
+ * `--timezone` - the timezone of the database. By default,
43
+ it is Etc/UTC. Of the default database adapters, only
44
+ PostgreSQL supports timezone. Use `--no-timezone` to use
45
+ the default timezone of the database
46
47
"""
48
0 commit comments