From 7bf810300e1a4b0a603819f457987d8e08d8d64d Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 15 May 2017 11:42:37 +0530 Subject: [PATCH] Fixed #8822, active students patch --- erpnext/patches/v7_2/mark_students_active.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/erpnext/patches/v7_2/mark_students_active.py b/erpnext/patches/v7_2/mark_students_active.py index 12057edb63..3513cdeb34 100644 --- a/erpnext/patches/v7_2/mark_students_active.py +++ b/erpnext/patches/v7_2/mark_students_active.py @@ -1,7 +1,5 @@ import frappe def execute(): - frappe.reload_doc('schools', 'doctype', 'student_batch_student') frappe.reload_doc('schools', 'doctype', 'student_group_student') - frappe.db.sql("update `tabStudent Batch Student` set active=1") frappe.db.sql("update `tabStudent Group Student` set active=1")