Schema::table('users', function (Blueprint $table) {
$table->dropColumn('votes');
});
Schema::table('users', function (Blueprint $table) {
$table->dropColumn(['votes', 'avatar', 'location']);
});
Available Command Aliases
$table->dropSoftDeletes();.
-
$table->dropRememberToken();.
-
$table->dropSoftDeletesTz();.
-
$table->dropTimestamps();.
-
$table->dropTimestampsTz();.