[patch] restore defaults
diff --git a/startup/install.py b/startup/install.py
index 5ddbf09..1553e1b 100644
--- a/startup/install.py
+++ b/startup/install.py
@@ -176,6 +176,6 @@
 	]
 	
 	for r in records:
-		doc = webnotes.doc(r)
-		doc.insert()
-	
\ No newline at end of file
+		if not webnotes.conn.exists(r['doctype'], r['name']):
+			bean = webnotes.bean(r)
+			bean.insert()
\ No newline at end of file