ACCOUNT: remove active on account.account and add new type closed
authorced <>
Mon, 14 May 2007 10:40:57 +0000 (10:40 +0000)
committerced <>
Mon, 14 May 2007 10:40:57 +0000 (10:40 +0000)
bzr revid: ced-c42b7428ed8b60a76f9530f1e1ca0a6e19f750b0

doc/migrate/4.0.0-4.1.0/post.py

index a7336f7..6623bac 100644 (file)
@@ -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()