diff --git a/database/migrations/2024_03_31_214348_change_packages_description.php b/database/migrations/2024_03_31_214348_change_packages_description.php new file mode 100644 index 00000000..c2a4b087 --- /dev/null +++ b/database/migrations/2024_03_31_214348_change_packages_description.php @@ -0,0 +1,28 @@ +text('description')->nullable()->change(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('packages', function (Blueprint $table) { + $table->text('description')->change(); + }); + } +};