diff --git a/scripts/db/schemes/channels.js b/scripts/db/schemes/channels.js index 11822fa2..dfcbc75d 100644 --- a/scripts/db/schemes/channels.js +++ b/scripts/db/schemes/channels.js @@ -7,6 +7,9 @@ module.exports = { name: Joi.string() .regex(/^[\sa-zA-Z\u00C0-\u00FF0-9-!:&.+'/»#%°$@?()]+$/) .required(), + native_name: Joi.string() + .regex(/^[^",]+$/) + .allow(null), network: Joi.string().allow(null), country: Joi.string() .regex(/^[A-Z]{2}$/)