diff --git a/doc/migrate/4.0.0-4.1.0/post.py b/doc/migrate/4.0.0-4.1.0/post.py index a7336f7e441..6623bace8cb 100644 --- a/doc/migrate/4.0.0-4.1.0/post.py +++ b/doc/migrate/4.0.0-4.1.0/post.py @@ -101,5 +101,12 @@ cr.commit() cr.execute("delete from ir_ui_menu where (id not in (select parent_id from ir_ui_menu where parent_id is not null)) and (id not in (select res_id from ir_values where model='ir.ui.menu'))") cr.commit() +# -------------------------------- # +# remove active to account_account # +# -------------------------------- # + +cr.execute("alter table account_account drop active") +cr.commit() + cr.close()