mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 12:44:02 +00:00
Remove is_primary from domain migrations
This commit is contained in:
parent
a602cec940
commit
7ad93adde5
1 changed files with 0 additions and 1 deletions
|
|
@ -19,7 +19,6 @@ class CreateDomainsTable extends Migration
|
|||
$table->increments('id');
|
||||
$table->string('domain', 255)->unique();
|
||||
$table->string('tenant_id', 36);
|
||||
$table->unsignedTinyInteger('is_primary')->default(false);
|
||||
|
||||
$table->timestamps();
|
||||
$table->foreign('tenant_id')->references('id')->on('tenants')->onUpdate('cascade')->onDelete('cascade');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue