PATH:
home
/
rwabteecom
/
public_html_old
/
database
/
migrations
/
Editing: 2014_10_11_000010_create_tenants_table.php
<?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'); } };
SAVE
CANCEL