increments('id'); $table->string('name'); $table->string('email')->unique(); $table->string('address')->nullable(); $table->string('phone')->nullable(); $table->string('website')->nullable(); $table->unsignedInteger('owner_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('agencies'); } }