Skip to content
Snippets Groups Projects
Commit 886d40b4 authored by Jay Vora's avatar Jay Vora
Browse files

[FIX] res.users has company_id as a required field(in view)

bzr revid: jvo@tinyerp.com-20100107154232-k6w8vd1vagm4w2it
parent ccf51984
Branches
Tags
No related merge requests found
......@@ -340,7 +340,7 @@ CREATE TABLE ir_model_data (
-- Users
---------------------------------
insert into res_users (id,login,password,name,action_id,active) values (1,'admin',NULL,'Administrator',NULL,True);
insert into res_users (id,login,password,name,action_id,active,company_id) values (1,'admin',NULL,'Administrator',NULL,True,1);
insert into ir_model_data (name,module,model,noupdate,res_id) values ('user_root','base','res.users',True,1);
-- Compatibility purpose, to remove V6.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment