连接(' mysql2')是我的(工作)第二个数据库连接。
首次迁移时,连接(' mysql2')按预期工作,表格已创建。
Schema::connection('mysql2')->create('brands', function(Blueprint $table)
{
//...
});
但是当我尝试在第二个数据库中播种表时:
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;
use App\Brands;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Model::unguard();
$this->call('BrandsTableSeeder');
$this->command->info("Brands table seeded.");
}
}
class BrandsTableSeeder extends Seeder
{
public function run()
{
DB::connection('mysql2')->table('brands')->delete();
Brands::connection('mysql2')->create(['brand' => 'test']);
}
}
我得到了:
[BadMethodCallException]
Call to undefined method Illuminate\Database\Query\Builder::connection()
答案 0 :(得分:5)
您的代码问题是您使用了{1}}方法与Eloquent(不是DB),Eloquent没有Connection()
方法。
您可以使用connection()
方法和模型(Eloquent)来指定连接
on()
参考http://laravel.com/docs/4.2/eloquent#basic-usage
或
而不是在任何地方写$user = User::on('mysql2')->create(['brand' => 'test']);
您可以在模型中编写以下代码
on('mysql2')
现在种子写为
protected $connection = 'mysql2';