schema: Remove uneeded TRX_REMOTE_IP validate type

Attribute trx_remote_ip is actually using IPv4 validate type, thus this
validate type is not needed.

Change-Id: Ia8e154ac5fe33932935ba049f08eb5af15195d99
This commit is contained in:
Pau Espin 2017-08-24 17:07:27 +02:00
parent 713ce2cf86
commit 3fa6e12b78
1 changed files with 0 additions and 2 deletions

View File

@ -75,7 +75,6 @@ HWADDR = 'hwaddr'
IMSI = 'imsi'
KI = 'ki'
MSISDN = 'msisdn'
TRX_REMOTE_IP = 'trx_remote_ip'
AUTH_ALGO = 'auth_algo'
SCHEMA_TYPES = {
INT: int,
@ -87,7 +86,6 @@ SCHEMA_TYPES = {
IMSI: imsi,
KI: ki,
MSISDN: msisdn,
TRX_REMOTE_IP: ipv4,
AUTH_ALGO: auth_algo,
}