id()->unique(); $table->string('name')->unique(); $table->int('owner_id'); //TODO: Foregin key to user Table $table->boolval('default'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('rooms'); } }