有没有办法在播种表之前将自动增量设置回1?
我在播种之前清空了桌子,如果我在播种之前没有migrate:refresh
,那么它会继续从最后一个位置自动增加ID,例如4。
表种子:
public function run()
{
DB::table('products')->delete();
// Product table seeder
$product = new \App\Product([
'category_id' => 1,
'image_path' => '/images/products/1/000001.jpg',
'title' => 'test',
]);
$product->save();
}
创建表格:
Schema::create('products', function (Blueprint $table) {
$table->increments('id');
$table->integer('category_id')->unsigned();
$table->foreign('category_id')->references('id')->on('categories');
$table->string('image_path');
$table->string('title');
$table->timestamps();
});
答案 0 :(得分:10)
试试这个:
DB::statement('SET FOREIGN_KEY_CHECKS=0');
DB::table('products')->truncate();
而不是
DB::table('products')->delete();
答案 1 :(得分:1)
如果您使用make:migration
或make:model -m
命令创建迁移,Laravel正在使用dropIfExists()
子句创建down()
方法:
public function down()
{
Schema::dropIfExists('products');
}
因此,当您运行migrate:refresh
命令时,Laravel将删除该表并将为您重新运行它。
此外,您在表格中有外键,因此您需要先使用dropForeign()
:
public function down()
{
Schema::table('products', function (Blueprint $table) {
$table->dropForeign('products_category_id_foreign');
});
Schema::dropIfExists('products');
}