mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 18:34:04 +00:00
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
This commit is contained in:
parent
27e9fb4a69
commit
e596eaaaa6
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue