Update column type

Signed-off-by: Arthur DANJOU <arthurdanjou@outlook.fr>
This commit is contained in:
2021-07-03 18:32:16 +02:00
parent a74e1ee282
commit c7902091d7

View File

@@ -11,7 +11,7 @@ export default class GuestbookMessages extends BaseSchema {
.unsigned()
.references('users.id')
.onDelete('CASCADE')
table.string('message')
table.text('message')
table.timestamps(true, true)
})
}