| 1234567891011121314151617181920212223242526 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- use App\Database\Migrations\TenantMigration;
- return new class extends TenantMigration
- {
- public function up()
- {
- Schema::create('sms_templates', function (Blueprint $table) {
- $table->id();
- $table->string('name');
- $table->text('content');
- $table->unsignedBigInteger('created_by');
- $table->timestamps();
- $table->foreign('created_by')->references('id')->on('users');
- });
- }
- public function down()
- {
- Schema::dropIfExists('sms_templates');
- }
- };
|