From 0aac352f3df0b408fb9a8fbfdb7b6d8117ce1d78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Santanch=C3=A8?= Date: Thu, 20 Jan 2022 14:48:03 -0300 Subject: [PATCH] fix (cases/database): adjust in the specialty size --- .../1642523350279_cases_update_character_set_schema.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/adonisjs/database/migrations/1642523350279_cases_update_character_set_schema.js b/src/adonisjs/database/migrations/1642523350279_cases_update_character_set_schema.js index a9313c4..2f1146d 100644 --- a/src/adonisjs/database/migrations/1642523350279_cases_update_character_set_schema.js +++ b/src/adonisjs/database/migrations/1642523350279_cases_update_character_set_schema.js @@ -9,7 +9,7 @@ class CasesUpdateCharacterSetSchema extends Schema { table.string('title').notNullable().collate('utf8mb4_unicode_ci').alter() table.string('description').collate('utf8mb4_unicode_ci').alter() table.string('domain', 50).collate('utf8mb4_unicode_ci').alter() - table.string('specialty', 50).collate('utf8mb4_unicode_ci').alter() + table.string('specialty', 512).collate('utf8mb4_unicode_ci').alter() table.string('keywords', 512).collate('utf8mb4_unicode_ci').alter() table.text('source').collate('utf8mb4_unicode_ci') }) @@ -20,7 +20,7 @@ class CasesUpdateCharacterSetSchema extends Schema { table.string('title').notNullable().alter() table.string('description').alter() table.string('domain', 50).alter() - table.string('specialty', 50).alter() + table.string('specialty', 512).alter() table.string('keywords', 512).alter() table.dropColumn('source') })