[optimize] remove count(*) from queries
diff --git a/erpnext/startup/boot.py b/erpnext/startup/boot.py
index 97ef329..9b16ad7 100644
--- a/erpnext/startup/boot.py
+++ b/erpnext/startup/boot.py
@@ -23,7 +23,7 @@
"Notification Control")
# if no company, show a dialog box to create a new company
- bootinfo.customer_count = frappe.db.sql("""select count(*) from tabCustomer""")[0][0]
+ bootinfo.customer_count = frappe.db.sql("""select count(name) from tabCustomer""")[0][0]
if not bootinfo.customer_count:
bootinfo.setup_complete = frappe.db.sql("""select name from