laravel migration soft delete code example

Example 1: laravel soft delete

/** in migrations this changes need to
    add for table we want to add soft delete (LARAVEL)*/

	/** The migrations. START */
	public function up()
	{
		Schema::table('users', function(Blueprint $table)
		{
			$table->softDeletes();
		});
	}
	/** The migrations. END */

	/** after adding softdelete you need to
    point that column in table related model (LARAVEL)*/

	/** The Model. START */
  	use Illuminate\Database\Eloquent\SoftDeletes;
  	class User extends Model {
	  use SoftDeletes;
	  protected $dates = ['deleted_at'];
	}
	/** The Model. END */

Example 2: laravel migration table softdeletes

$ php artisan make:migration add_soft_deletes_to_user_table --table="users"}

Example 3: delete a migration laravel

// delete a migration safely from laravel 
delete migration from database/migrations/ directory
and also delete entry from migrations table

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();  }); }}

Tags:

Php Example