From e596eaaaa67af9a73648446e1ec303fa8b8578e6 Mon Sep 17 00:00:00 2001 From: Abraham Brookes Date: Mon, 22 Mar 2021 11:30:05 +1000 Subject: [PATCH] Update 2019_09_15_000010_create_tenants_table.php just added a comment to clarify how to use these custom columns on the tenant model --- assets/migrations/2019_09_15_000010_create_tenants_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/migrations/2019_09_15_000010_create_tenants_table.php b/assets/migrations/2019_09_15_000010_create_tenants_table.php index ec730651..732c4173 100644 --- a/assets/migrations/2019_09_15_000010_create_tenants_table.php +++ b/assets/migrations/2019_09_15_000010_create_tenants_table.php @@ -18,7 +18,7 @@ class CreateTenantsTable extends Migration Schema::create('tenants', function (Blueprint $table) { $table->string('id')->primary(); - // your custom columns may go here + // your custom columns may go here - remember to add these to your tenant model by using getCustomColumns $table->timestamps(); $table->json('data')->nullable();