diff --git a/database/migrations/2026_03_05_170000_create_cm_songs_table.php b/database/migrations/2026_03_05_170000_create_cm_songs_table.php new file mode 100644 index 0000000..370b0c5 --- /dev/null +++ b/database/migrations/2026_03_05_170000_create_cm_songs_table.php @@ -0,0 +1,29 @@ +id(); + $table->unsignedBigInteger('tenant_id')->index(); + $table->unsignedBigInteger('user_id')->index(); + $table->string('company_name', 100); + $table->string('industry', 200); + $table->text('lyrics'); + $table->string('audio_path')->nullable(); + $table->json('options')->nullable(); + $table->timestamps(); + $table->softDeletes(); + }); + } + + public function down(): void + { + Schema::dropIfExists('cm_songs'); + } +};