increments('id'); $table->string('name', 60); $table->string('email')->nullable()->unique(); $table->string('phone')->nullable(); $table->string('pic')->nullable(); $table->string('address')->nullable(); $table->string('notes')->nullable(); $table->boolean('is_active')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('partners'); } }