adding column in laravel code example
Example 1: add new column in existing table in laravel migration
public function down()
{
Schema::table('users', function($table) {
$table->dropColumn('paid');
});
}
Example 2: laravel rename table
Schema::rename($currentTableName, $newTableName);