kuvia/database/migrations/2021_01_11_153100_tenant.php

38 lines
797 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class Tenant extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('tenants', function (Blueprint $table) {
$table->id();
$table->timestamps();
$table->string('name');
$table->string('url');
$table->string("template");
$table->unsignedBigInteger("owner");
$table->foreign('owner')->references('id')->on('users');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('tenant');
}
}