From 6ffdbf9ac330341884e1e6e171b6d22787f5e0da Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Tue, 25 Feb 2014 15:24:55 -0500 Subject: [PATCH] increase max slice_name length to 64 chars --- PLC/Slices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PLC/Slices.py b/PLC/Slices.py index db0cd05..93ec562 100644 --- a/PLC/Slices.py +++ b/PLC/Slices.py @@ -27,7 +27,7 @@ class Slice(Row): fields = { 'slice_id': Parameter(int, "Slice identifier"), 'site_id': Parameter(int, "Identifier of the site to which this slice belongs"), - 'name': Parameter(str, "Slice name", max = 32), + 'name': Parameter(str, "Slice name", max = 64), 'instantiation': Parameter(str, "Slice instantiation state"), 'url': Parameter(str, "URL further describing this slice", max = 254, nullok = True), 'description': Parameter(str, "Slice description", max = 2048, nullok = True), -- 2.43.0