diff --git a/database/migrations/2020_11_18_214827_widen_license_serial_field.php b/database/migrations/2020_11_18_214827_widen_license_serial_field.php new file mode 100644 index 0000000000..3b5aaf0065 --- /dev/null +++ b/database/migrations/2020_11_18_214827_widen_license_serial_field.php @@ -0,0 +1,32 @@ +text('serial')->nullable()->default(null)->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('licenses', function (Blueprint $table) { + $table->string('serial', 2048)->nullable()->default(null)->change(); + }); + } +}