ruạṛ
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('audio_post', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('post_id'); $table->longText('audio_content')->nullable(); $table->timestamps(); $table->foreign('post_id')->references('id') ->on('posts') ->onUpdate('cascade') ->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('audio_post'); } };
cải xoăn