6 lines
163 B
Python
6 lines
163 B
Python
from __future__ import unicode_literals
|
|
import frappe
|
|
|
|
def execute():
|
|
frappe.reload_doctype("User")
|
|
frappe.db.sql("update `tabUser` set last_active=last_login")
|