composer require doctrine/dbal

  

php artisan make:migration alter_tablename_table --table=tablename

  

Schema::table('users', function (Blueprint $table) { $table->string('name', 50)->nullable()->change(); })

  

php artisan migrate





相关文章:

  • 2022-02-26
  • 2021-09-27
  • 2022-02-01
  • 2021-07-25
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-12
  • 2022-01-04
相关资源
相似解决方案