Как мы генерируем миграцию в одиночном столбце в Ларавеле
Schema::connection('foo')->create('users', function (Blueprint $table) {
$table->id();
});
Sleepy Sardine
Schema::connection('foo')->create('users', function (Blueprint $table) {
$table->id();
});
if (Schema::hasTable('users')) {
//
}
if (Schema::hasColumn('users', 'email')) {
//
}