Limit varchar length to 140 instead of 255 to mitigate Row Size Too Large error

This commit is contained in:
Anand Doshi
2015-10-02 17:14:40 +05:30
parent b4c0e94e99
commit 71ebad5668
199 changed files with 2475 additions and 2282 deletions

View File

@@ -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",

View File

@@ -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",

View File

@@ -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",

View File

@@ -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",

View 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