調整 FavoriteSongs 20250522

This commit is contained in:
allen.yan 2025-05-22 12:22:51 +08:00
parent d2f5576f94
commit d301fe62c5

View File

@ -13,7 +13,7 @@ return new class extends Migration
{
Schema::create('FavoriteSongs', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('songNumber');
$table->string('songNumber',20);
$table->string('userPhone', 10);
$table->timestamps();
});