From 750d07ff6efe65767b304cdbd1a98cc0247108dc Mon Sep 17 00:00:00 2001 From: ced <> Date: Mon, 14 May 2007 10:40:57 +0000 Subject: [PATCH] ACCOUNT: remove active on account.account and add new type closed bzr revid: ced-c42b7428ed8b60a76f9530f1e1ca0a6e19f750b0 --- doc/migrate/4.0.0-4.1.0/post.py | 7 +++++++ 1 file changed, 7 insertions(+) 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()