mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
34 lines
653 B
PHP
34 lines
653 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class CategoryRegexesTableSeeder extends Seeder
|
|
{
|
|
|
|
/**
|
|
* Auto generated seed file
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
|
|
|
|
\DB::table('category_regexes')->delete();
|
|
|
|
\DB::table('category_regexes')->insert(array (
|
|
0 =>
|
|
array (
|
|
'id' => 1,
|
|
'group_regex' => '^alt\\.binaries\\.sony\\.psvita$',
|
|
'regex' => '/.*/ ',
|
|
'status' => 1,
|
|
'description' => '',
|
|
'ordinal' => 50,
|
|
'categories_id' => 1120,
|
|
),
|
|
));
|
|
|
|
|
|
}
|
|
} |