laravel remove table migration code example
Example 1: laravel migration remove column
public function up()
{
Schema::table('table', function($table) {
$table->dropColumn('column_name');
});
}
Example 2: delete a migration laravel
// delete a migration safely from laravel
delete migration from database/migrations/ directory
and also delete entry from migrations table
Example 3: laravel migration table softdeletes
use Illuminate\Database\Eloquent\SoftDeletes;class User extends Model {use SoftDeletes; protected $dates = ['deleted_at'];}