kalkatfyodor
How to revert phx.gen.context via mix
I run this command:
$ mix phx.gen.context Cars Car cars model:string price:string
and then I run:
$ mix ecto.migrate
Now, I would like to remove it back, all the changes in Phoenix including inside the database (Postgres in my case).
What steps do I need to take?
I am not using git, so reverting back is not an option. Although this revertion wouldn’t help with Postgres I am afraid.
I am especially worried about polluting my database. Is there a nice way to safely revert/remove stuff from the DB without manually tinkering with the DB? Including stuff like the sequences, indexes of the DB, etc.?
Marked As Solved
shd42
I don’t use the generator, but here’s my best guess. You should be fine just removing the created file. If the generator had modified anything else, it would tell you about it. injecting only means that it’s adding content to the files created just before it (probably because it supports the file already being there, and only injecting content into it).
Popular in Discussions
Other popular topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #advent-of-code
- #elixirconf-us
- #distillery
- #processes
- #forms
- #api
- #metaprogramming
- #security
- #performance









