From 7a65d99039bc09c6eb365a5fad02cecb8dbd880f Mon Sep 17 00:00:00 2001 From: Sam Poyigi <6567634+sampoyigi@users.noreply.github.com> Date: Tue, 14 Jun 2022 15:56:55 +0100 Subject: [PATCH] Increase varchar length on all string columns Signed-off-by: Sam Poyigi <6567634+sampoyigi@users.noreply.github.com> --- ...22_06_14_211028_increase_string_length.php | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 database/migrations/2022_06_14_211028_increase_string_length.php diff --git a/database/migrations/2022_06_14_211028_increase_string_length.php b/database/migrations/2022_06_14_211028_increase_string_length.php new file mode 100755 index 0000000..8ba04f0 --- /dev/null +++ b/database/migrations/2022_06_14_211028_increase_string_length.php @@ -0,0 +1,24 @@ +string('provider', 255)->change(); + $table->string('provider_id', 255)->change(); + $table->string('token', 255)->change(); + $table->string('user_type', 255)->change(); + }); + } + + public function down() + { + } +}