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'); } }