我剛剛學習Laravel,並且有一個工作遷移文件創建用戶表。我想填充用戶記錄作爲遷移的一部分:在Laravel遷移文件中填充數據庫
public function up()
{
Schema::create('users', function($table){
$table->increments('id');
$table->string('email', 255);
$table->string('password', 64);
$table->boolean('verified');
$table->string('token', 255);
$table->timestamps();
DB::table('users')->insert(
array(
'email' => '[email protected]',
'verified' => true
)
);
});
}
但運行php artisan migrate
時,我收到以下錯誤:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'vantage.users' doesn't exist
這顯然是因爲工匠尚未建立該表,但所有文檔似乎都表示,有一種使用Fluent Query來遷移數據的方式。
任何人都知道如何?謝謝!
Thankyou Benjamin,這太棒了! –
以及如何插入多個數據? –