xxxxxxxxxx
// delete a migration safely from laravel
delete migration from database/migrations/ directory
and also delete entry from migrations table
xxxxxxxxxx
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
Schema::table('flights', function (Blueprint $table) {
$table->softDeletes();
});
Schema::table('flights', function (Blueprint $table) {
$table->dropSoftDeletes();
});
xxxxxxxxxx
Class RemoveCommentViewCount extends Migration
{
public function up()
{
Schema::table('table', function($table) {
$table->dropColumn('coulmn_name');
});
}
public function down()
{
Schema::table('table', function($table) {
$table->integer('column_name');
});
}
}
xxxxxxxxxx
Class RemoveCommentViewCount extends Migration
{
public function up()
{
Schema::table('articles', function($table) {
$table->dropColumn('comment_count');
$table->dropColumn('view_count');
});
}
public function down()
{
Schema::table('articles', function($table) {
$table->integer('comment_count');
$table->integer('view_count');
});
}
}
xxxxxxxxxx
Comment::where('post_id',$id)->delete();
// in down migration
public function down()
{
Schema::table('package_types', function (Blueprint $table) {
\App\Models\PackageType::query()->where('id','gt',1)->delete();
});
}