Answers for "php artisan migration down"

25

php artisan make migration

php artisan make:migration create_users_table
Posted by: Guest on January-14-2021
5

migration rollback

php artisan migrate:rollback
Posted by: Guest on May-04-2020
0

laravel migration artisan

/**
 * The database connection that should be used by the migration.
 *
 * @var string
 */
protected $connection = 'pgsql';

/**
 * Run the migrations.
 *
 * @return void
 */
public function up()
{
    //
}
Posted by: Guest on June-08-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language