From 05a206d3677a856765fa1e254dd1b607689d3255 Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Sat, 25 Dec 2021 17:08:59 +0100 Subject: [PATCH] Increased sessions table size --- ...0_increase_sessions_table_payload_size.php | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 db/migrations/2021_12_25_000000_increase_sessions_table_payload_size.php diff --git a/db/migrations/2021_12_25_000000_increase_sessions_table_payload_size.php b/db/migrations/2021_12_25_000000_increase_sessions_table_payload_size.php new file mode 100644 index 00000000..cc50bac9 --- /dev/null +++ b/db/migrations/2021_12_25_000000_increase_sessions_table_payload_size.php @@ -0,0 +1,29 @@ +schema->table('sessions', function (Blueprint $table) { + $table->mediumText('payload')->change(); + }); + } + + /** + * Reverse the migration + */ + public function down() + { + $this->schema->table('sessions', function (Blueprint $table) { + $table->text('payload')->change(); + }); + } +}