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