1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- declare(strict_types=1);
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- class CreateDomainsTable extends Migration
- {
- /**
- * Get the migration connection name.
- */
- public function getConnection(): ?string
- {
- return config('tenancy.database.central_connection');
- }
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up(): void
- {
- Schema::create('domains', function (Blueprint $table) {
- $table->increments('id');
- $table->string('domain', 255)->unique();
- $table->string('tenant_id');
- $table->timestamps();
- $table->foreign('tenant_id')->references('id')->on('tenants')->onUpdate('cascade')->onDelete('cascade');
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down(): void
- {
- Schema::dropIfExists('domains');
- }
- }
|