From 260fd5888e3fc7281a5794e5473ede27ad80bcf3 Mon Sep 17 00:00:00 2001 From: = <=> Date: Fri, 29 Apr 2022 11:46:51 -0400 Subject: [PATCH] change db migration blockchain_desc from var255 to text block. Some descriptions were too large to fit within 255 --- database/migrations/2022_04_07_195619_account_info_standard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2022_04_07_195619_account_info_standard.php b/database/migrations/2022_04_07_195619_account_info_standard.php index 15fa957f..811865f1 100644 --- a/database/migrations/2022_04_07_195619_account_info_standard.php +++ b/database/migrations/2022_04_07_195619_account_info_standard.php @@ -16,7 +16,7 @@ public function up() Schema::table('profile', function ($table) { $table->string('casper_association_kyc_hash')->nullable(); $table->string('blockchain_name')->nullable(); - $table->string('blockchain_desc')->nullable(); + $table->text('blockchain_desc')->nullable(); }); }