-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to uninstall feature? #42
Comments
Yes, |
Oh, I see. I wasn't expecting it to deal with partitions as that would be difficult. I was, however, expecting it to delete the triggers and stuff. Would that be impossible? |
Unfortunately no. Right now it doesn't do anything at the database level, only during runtime. So if you want to remove triggers, the only way is to that manually. |
Hi @maxtepkeev or @alexei how to manually remove the triggers? New records are still inserted into a partitioned table even after removing the architect package. Also, I can't seem to delete the triggers records in the Please let me know if you can help, thanks! [Update] DROP TRIGGER trigger_name ON model_table; worked for me. |
I decorated a model with
@architect.uninstall('partition')
then ranarchitect partition --module myapp.models
with the following result:I might be doing something wrong. The docs seem a tad too brief, though :)
The text was updated successfully, but these errors were encountered: