36 lines
1.4 KiB
PHP
36 lines
1.4 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class CategorySeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
Schema::disableForeignKeyConstraints();
|
|
DB::table('categories')->delete();
|
|
Schema::enableForeignKeyConstraints();
|
|
|
|
$groups = [
|
|
['id'=>null,'name'=>'Habarlar','depth'=>1,'lft'=>2,'rgt'=>3],
|
|
['id'=>null,'name'=>'Kinofilmler','depth'=>1,'lft'=>4,'rgt'=>5],
|
|
['id'=>null,'name'=>'Dokumental filmler','depth'=>1,'lft'=>6,'rgt'=>7],
|
|
['id'=>null,'name'=>'Multfilmler','depth'=>1,'lft'=>8,'rgt'=>9],
|
|
['id'=>null,'name'=>'Telegepleşikler','depth'=>1,'lft'=>10,'rgt'=>11],
|
|
['id'=>null,'name'=>'Radiogepleşikler','depth'=>1,'lft'=>12,'rgt'=>13],
|
|
['id'=>null,'name'=>'Çagalar üçin','depth'=>1,'lft'=>14,'rgt'=>15],
|
|
['id'=>null,'name'=>'Sport','depth'=>1,'lft'=>16,'rgt'=>17],
|
|
['id'=>null,'name'=>'Taryh','depth'=>1,'lft'=>18,'rgt'=>19],
|
|
['id'=>null,'name'=>'Syýahtçylyk','depth'=>1,'lft'=>20,'rgt'=>21],
|
|
['id'=>null,'name'=>'Aýdym-saz klipleri','depth'=>1,'lft'=>22,'rgt'=>23],
|
|
['id'=>null,'name'=>'Redaktoryň saýlany','depth'=>1,'lft'=>24,'rgt'=>25],
|
|
['id'=>null,'name'=>'Dürli','depth'=>1,'lft'=>26,'rgt'=>27],
|
|
];
|
|
DB::table('categories')->insert($groups);
|
|
}
|
|
}
|