Как я могу запретить массовое назначение атрибута модели при вставке в Adonisjs
#adonis.js Вопрос: public async store({ request, response }: HttpContextContract) { const postSchema = schema.create({ title: schema.string({}, [ rules.maxLength(250), ]), body: schema.string({}, [ rules.maxLength(1000), ]), is_published: schema.boolean.optional(), user_id: schema.number([ rules.unsigned(), rules.exists({…