<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateWorkspacesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
if ( ! Schema::hasTable('workspaces')) {
Schema::create('workspaces', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->integer('owner_id')->unsigned()->index();
$table->timestamp('created_at')->index()->nullable();
$table->timestamp('updated_at')->index()->nullable();
});
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('workspaces');
}
}