php artisan migrate in laravel 8 code example
Example 1: laravel migration add unique column
Schema::table('tableName', function($table)
{
$table->string('column-name')->unique(); //notice the parenthesis I added
});
Example 2: how to change existing migration laravel
php artisan make:migration update_user_guide_in_product_translations_table