diff --git a/database/migrations/2016_10_27_213251_increase_serial_field_capacity.php b/database/migrations/2016_10_27_213251_increase_serial_field_capacity.php new file mode 100644 index 000000000000..f81c9373ef3f --- /dev/null +++ b/database/migrations/2016_10_27_213251_increase_serial_field_capacity.php @@ -0,0 +1,31 @@ +string('serial', 2048)->nullable()->default(null)->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('licenses', function ($table) { + $table->string('serial', 255)->nullable()->default(null)->change(); + }); + } +}