mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
37 lines
794 B
PHP
37 lines
794 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class CaticonsTableSeeder extends Seeder
|
|
{
|
|
|
|
/**
|
|
* Auto generated seed file
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
|
|
|
|
\DB::table('caticons')->delete();
|
|
|
|
\DB::table('caticons')->insert(array (
|
|
0 =>
|
|
array (
|
|
'id' => 1,
|
|
'name' => 'SceneTorrents mod',
|
|
'folder' => 'scenetorrents/',
|
|
'cssfile' => 'pic/category/chd/scenetorrents/catsprites.css',
|
|
'multilang' => 'yes',
|
|
'secondicon' => 'no',
|
|
'designer' => 'NexusPHP',
|
|
'comment' => 'Modified from SceneTorrents',
|
|
),
|
|
));
|
|
|
|
|
|
}
|
|
} |