我想在laravel遷移中創(chuàng)建的架構(gòu)中插入數(shù)據(jù),但找不到方法。有人可以指導(dǎo)嗎?public function up(){ DB::statement('CREATE SCHEMA IF NOT EXISTS reports'); Schema::create('reports.campaign_reports', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('campaign')->nullable(); $table->string('currency')->nullable(); });}這是我的模型:class CampaignReport extends Model{// protected $connection = 'schema.reports';protected $table = 'campaign_reports';protected $fillable = [ 'campaign', 'currency' ];}這就是我節(jié)省的方式:CampaignReport::create((array) $dataObject);我收到此錯誤:SQLSTATE [42P01]:未定義表:7錯誤:關(guān)系“ campaign_reports”不存在第1行:插入“ campaign_reports”(“ campaign”,“ currency”,...
- 1 回答
- 0 關(guān)注
- 152 瀏覽
添加回答
舉報
0/150
提交
取消