Answers for "Laravel 5.8 Registration Create 2 table"

PHP
6

laravel migration remove column

public function up()
{
  Schema::table('table', function($table) {
    $table->dropColumn('column_name');
  });
}
Posted by: Guest on April-16-2020

Code answers related to "Laravel 5.8 Registration Create 2 table"

Browse Popular Code Answers by Language