diff options
author | Konstantin Zolotarev <konstantin.zolotarev@gmail.com> | 2018-04-25 23:12:19 +0300 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2018-04-25 22:12:19 +0200 |
commit | 9cd3701ac0297f4bdf9673ea0dffa8ffdaea63e8 (patch) | |
tree | 65c41baf486432814d4c2ece35f4d48c43051848 /plugins/mix | |
parent | bf87e99a14320885c506c6b07c9ead8825ee53b9 (diff) | |
download | zsh-9cd3701ac0297f4bdf9673ea0dffa8ffdaea63e8.tar.gz zsh-9cd3701ac0297f4bdf9673ea0dffa8ffdaea63e8.tar.bz2 zsh-9cd3701ac0297f4bdf9673ea0dffa8ffdaea63e8.zip |
Added ecto tasks (#6035)
Diffstat (limited to 'plugins/mix')
-rw-r--r-- | plugins/mix/_mix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/mix/_mix b/plugins/mix/_mix index 025572a4d..ecbe7e2d3 100644 --- a/plugins/mix/_mix +++ b/plugins/mix/_mix @@ -21,6 +21,15 @@ _1st_arguments=( 'deps.unlock:Unlock the given dependencies' 'deps.update:Update the given dependencies' 'do:Executes the tasks separated by comma' + 'ecto.create:Create Ecto database' + 'ecto.drop:Drop the storage for the given repository' + 'ecto.dump:Dumps the current environment’s database structure' + 'ecto.gen.migration:Generates a migration' + 'ecto.gen.repo:Generates a new repository' + 'ecto.load:Loads the current environment’s database structure' + 'ecto.migrate:Runs Ecto migration' + 'ecto.migrations:Displays the up / down migration status' + 'ecto.rollback:Reverts applied migrations' 'escript.build:Builds an escript for the project' 'help:Print help information for tasks' 'hex:Print hex help information' |