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() + { + } +}