Skip to content

Commit

Permalink
fix (cases/database): adjust in the specialty size
Browse files Browse the repository at this point in the history
  • Loading branch information
santanche committed Jan 20, 2022
1 parent 2b6b31e commit 0aac352
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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')
})
Expand All @@ -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')
})
Expand Down

0 comments on commit 0aac352

Please sign in to comment.