increments('id'); $table->string('name', 45)->nullable(); $table->boolean('is_active')->nullable(); $table->string('type', 45)->nullable(); $table->string('key', 45)->nullable(); $table->string('value', 45)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('relation_communications'); } }