D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
database
/
migrations
/
Filename :
2014_10_11_000010_create_tenants_table.php
back
Copy
<?php declare(strict_types=1); use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::create('tenants', function (Blueprint $table) { $table->string('id', 191)->primary(); $table->string('tenant_username'); // your custom columns may go here $table->timestamps(); $table->text('data')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('tenants'); } };