diff --git a/database/migrations/2024_02_24_144733_about.php b/database/migrations/2024_02_24_144733_about.php new file mode 100644 index 0000000..55445de --- /dev/null +++ b/database/migrations/2024_02_24_144733_about.php @@ -0,0 +1,32 @@ +increments('id'); + $table->longText('content'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('about', function (Blueprint $table) { + $table->dropColumn('about'); + }); + } +}