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