Answers for "laravel drop a field from table"

PHP
1

php artisan drop table

php artisan make:migration drop_name_table
Posted by: Guest on February-22-2021
0

laravel drop column softdeletes

public function down()
{
  Schema::table('users', function (Blueprint $table) {
    $table->dropSoftDeletes();
  });
}
Posted by: Guest on September-04-2020

Browse Popular Code Answers by Language