diff --git a/database/migrations/2020_09_14_143153_invoice_details_description_nullable.php b/database/migrations/2020_09_14_143153_invoice_details_description_nullable.php new file mode 100644 index 00000000..a1a890fa --- /dev/null +++ b/database/migrations/2020_09_14_143153_invoice_details_description_nullable.php @@ -0,0 +1,32 @@ +string('description', 256)->nullable()->default(null)->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('invoice_details', function (Blueprint $table) { + // + }); + } +}