engine = 'InnoDB';
$table->integer('id', true);
$table->string('host', 191);
$table->integer('port');
$table->string('username', 191);
$table->string('password', 191);
$table->string('encryption', 191);
$table->timestamps(6);
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('servers');
}
}