laravel migration remove table code example
Example 1: laravel migration remove column
public function up()
{
Schema::table('table', function($table) {
$table->dropColumn('column_name');
});
}
Example 2: laravel migration
php artisan migrate
Example 3: laravel migration table softdeletes
$ php artisan make:migration add_soft_deletes_to_user_table --table="users"}
Example 4: laravel migration table softdeletes
use Illuminate\Database\Eloquent\SoftDeletes;class User extends Model {use SoftDeletes; protected $dates = ['deleted_at'];}
Example 5: laravel migration table softdeletes
use Illuminate\Database\Schema\Blueprint;use Illuminate\Database\Migrations\Migration;class AddSoftDeletesToUserTable extends Migration {/** * Run the migrations. * * @return void */ public function up() { Schema::table('users', function(Blueprint $table) { $table->softDeletes(); }); }/** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function(Blueprint $table) { $table->dropSoftDeletes(); }); }}