laravel在控制器中动态创建数据表时间:2023-03-09 00:12:20 Schema::connection('usertable')->create('test', function ($table) { $table->increments('id'); $table->string('name'); }); 'usertable'自己配置的数据库名称。'test'要创建的数据表名称