mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-29 14:48:26 +00:00
Limit varchar length to 140 instead of 255 to mitigate Row Size Too Large error
This commit is contained in:
@@ -63,6 +63,7 @@
|
||||
"in_filter": 0,
|
||||
"in_list_view": 1,
|
||||
"label": "Address Type",
|
||||
"length": 20,
|
||||
"no_copy": 0,
|
||||
"options": "Billing\nShipping\nOffice\nPersonal\nPlant\nPostal\nShop\nSubsidiary\nWarehouse\nOther",
|
||||
"permlevel": 0,
|
||||
@@ -536,7 +537,7 @@
|
||||
"is_submittable": 0,
|
||||
"issingle": 0,
|
||||
"istable": 0,
|
||||
"modified": "2015-09-14 02:55:53.462812",
|
||||
"modified": "2015-10-02 07:38:37.894887",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Utilities",
|
||||
"name": "Address",
|
||||
|
||||
@@ -85,7 +85,7 @@
|
||||
"is_submittable": 0,
|
||||
"issingle": 0,
|
||||
"istable": 0,
|
||||
"modified": "2015-09-14 02:55:53.732649",
|
||||
"modified": "2015-10-02 07:38:38.124736",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Utilities",
|
||||
"name": "Address Template",
|
||||
|
||||
@@ -108,6 +108,7 @@
|
||||
"in_filter": 0,
|
||||
"in_list_view": 1,
|
||||
"label": "Status",
|
||||
"length": 20,
|
||||
"no_copy": 0,
|
||||
"options": "Passive\nOpen\nReplied",
|
||||
"permlevel": 0,
|
||||
@@ -470,7 +471,7 @@
|
||||
"is_submittable": 0,
|
||||
"issingle": 0,
|
||||
"istable": 0,
|
||||
"modified": "2015-08-27 03:39:27.529205",
|
||||
"modified": "2015-10-02 07:38:42.365280",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Utilities",
|
||||
"name": "Contact",
|
||||
|
||||
@@ -230,7 +230,7 @@
|
||||
"is_submittable": 0,
|
||||
"issingle": 0,
|
||||
"istable": 0,
|
||||
"modified": "2015-07-22 11:53:25.998578",
|
||||
"modified": "2015-10-02 07:39:13.234503",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Utilities",
|
||||
"name": "SMS Log",
|
||||
|
||||
12
erpnext/utilities/doctype/sms_log/test_sms_log.py
Normal file
12
erpnext/utilities/doctype/sms_log/test_sms_log.py
Normal file
@@ -0,0 +1,12 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# See license.txt
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import frappe
|
||||
import unittest
|
||||
|
||||
# test_records = frappe.get_test_records('SMS Log')
|
||||
|
||||
class TestSMSLog(unittest.TestCase):
|
||||
pass
|
||||
Reference in New Issue
Block a user