From 48889a725076062519f1b76cb67910305e1d9abd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Thu, 5 Mar 2026 14:36:47 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20[rd]=20CM=EC=86=A1=20=EC=A0=80=EC=9E=A5?= =?UTF-8?q?=20=ED=85=8C=EC=9D=B4=EB=B8=94=20=EB=A7=88=EC=9D=B4=EA=B7=B8?= =?UTF-8?q?=EB=A0=88=EC=9D=B4=EC=85=98=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - cm_songs 테이블: tenant_id, user_id, company_name, industry, lyrics, audio_path, options --- ...026_03_05_170000_create_cm_songs_table.php | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 database/migrations/2026_03_05_170000_create_cm_songs_table.php 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'); + } +};