mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 02:01:33 +00:00
Remove fixtures asd they are not needed anymore
This commit is contained in:
@@ -1,82 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Console\Commands;
|
||||
|
||||
use DariusIII\L5Fixtures\FixturesFacade;
|
||||
use Illuminate\Console\Command;
|
||||
|
||||
class FixturesDown extends Command
|
||||
{
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private static $allowedTables = [
|
||||
'binaryblacklist',
|
||||
'root_categories',
|
||||
'categories',
|
||||
'category_regexes',
|
||||
'collection_regexes',
|
||||
'content',
|
||||
'usenet_groups',
|
||||
'menu',
|
||||
'release_naming_regexes',
|
||||
'settings',
|
||||
];
|
||||
|
||||
/**
|
||||
* The name and signature of the console command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'fixtures:down {--t|table=* : Table to truncate, no argument truncates them all}';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description = 'Truncate(empty) all, multiple or just one table.
|
||||
Tables that are supported are :
|
||||
no option argument <= Truncates all the tables listed below
|
||||
binaryblacklist
|
||||
root_categories
|
||||
categories
|
||||
category_regexes
|
||||
collection_regexes
|
||||
content
|
||||
usenet_groups
|
||||
release_naming_regexes
|
||||
settings';
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
if ($this->confirm('This command will truncate(empty) your tables. Should we continue?')) {
|
||||
if (empty($this->option('table'))) {
|
||||
$this->info('Truncating all tables');
|
||||
FixturesFacade::down();
|
||||
} else {
|
||||
foreach ($this->option('table') as $option) {
|
||||
if (\in_array($option, self::$allowedTables, false)) {
|
||||
$this->info('Truncating '.$option.' table');
|
||||
FixturesFacade::down($option);
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$this->info('Command execution stopped');
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,77 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Console\Commands;
|
||||
|
||||
use DariusIII\L5Fixtures\FixturesFacade;
|
||||
use Illuminate\Console\Command;
|
||||
|
||||
class FixturesUp extends Command
|
||||
{
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private static $allowedTables = [
|
||||
'binaryblacklist',
|
||||
'root_categories',
|
||||
'categories',
|
||||
'category_regexes',
|
||||
'collection_regexes',
|
||||
'content',
|
||||
'usenet_groups',
|
||||
'release_naming_regexes',
|
||||
'settings',
|
||||
];
|
||||
|
||||
/**
|
||||
* The name and signature of the console command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'fixtures:up {--t|table=* : Populate all, multiple or single table}';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description = 'Apply database fixtures to all tables or just to select ones.
|
||||
Tables that are supported are :
|
||||
no argument <= Populates all the tables listed below
|
||||
binaryblacklist
|
||||
root_categories
|
||||
categories
|
||||
category_regexes
|
||||
collection_regexes
|
||||
content
|
||||
usenet_groups
|
||||
release_naming_regexes
|
||||
settings';
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
if (empty($this->option('table'))) {
|
||||
$this->info('Populating all tables');
|
||||
FixturesFacade::up();
|
||||
} else {
|
||||
foreach ($this->option('table') as $option) {
|
||||
if (\in_array($option, self::$allowedTables, false)) {
|
||||
$this->info('Populating '.$option.' table');
|
||||
FixturesFacade::up($option);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -51,7 +51,6 @@
|
||||
"caneara/triggers": "^1.0",
|
||||
"canihavesomecoffee/thetvdbapi": "^2.0",
|
||||
"cviebrock/laravel-elasticsearch": "^10.0",
|
||||
"dariusiii/l5-fixtures": "^3.0",
|
||||
"dariusiii/php-itunes-api": "^1.0",
|
||||
"dariusiii/rarinfo": "^2.5",
|
||||
"dariusiii/tmdb-laravel": "^6.0",
|
||||
@@ -68,7 +67,6 @@
|
||||
"intervention/imagecache": "^2.3",
|
||||
"james-heinrich/getid3": "1.9.*",
|
||||
"jamesmills/laravel-timezone": "^1.11",
|
||||
"jenssegers/model": "dev-master",
|
||||
"joshpinkney/tv-maze-php-api": "dev-master",
|
||||
"jrean/laravel-user-verification": "^11.0",
|
||||
"junaidnasir/larainvite": "^5.0",
|
||||
|
||||
Generated
+108
-264
@@ -4,7 +4,7 @@
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "6f58a56d700c17c7bd4e6a4b5c8af99f",
|
||||
"content-hash": "f0cbb646147483a8138272a6f050f9d6",
|
||||
"packages": [
|
||||
{
|
||||
"name": "aharen/omdbapi",
|
||||
@@ -903,73 +903,6 @@
|
||||
],
|
||||
"time": "2023-02-18T02:44:52+00:00"
|
||||
},
|
||||
{
|
||||
"name": "dariusiii/l5-fixtures",
|
||||
"version": "v3.1.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/DariusIII/l5-fixtures.git",
|
||||
"reference": "da75077cd71dbc730aad26c05b8257e0a6286211"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/DariusIII/l5-fixtures/zipball/da75077cd71dbc730aad26c05b8257e0a6286211",
|
||||
"reference": "da75077cd71dbc730aad26c05b8257e0a6286211",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"illuminate/console": "^8.0|^9.0|^10.0",
|
||||
"illuminate/database": "^8.0|^9.0|^10.0",
|
||||
"illuminate/support": "^8.0|^9.0|^10.0",
|
||||
"league/csv": "^9.0",
|
||||
"league/flysystem": "^3.0",
|
||||
"php": ">=8.0",
|
||||
"symfony/yaml": "^6.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"mockery/mockery": "^1.2",
|
||||
"phpunit/phpunit": "^8.0|^9.0"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"laravel": {
|
||||
"providers": [
|
||||
"DariusIII\\L5Fixtures\\FixturesServiceProvider"
|
||||
],
|
||||
"aliases": {
|
||||
"Fixtures": "DariusIII\\L5Fixtures\\FixturesFacade"
|
||||
}
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"DariusIII\\L5Fixtures\\": "src/DariusIII/L5Fixtures/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Maycon Viana Bordin",
|
||||
"email": "mayconbordin@gmail.com"
|
||||
}
|
||||
],
|
||||
"description": "A fixtures package for Laravel",
|
||||
"homepage": "https://github.com/dariusiii/l5-fixtures",
|
||||
"keywords": [
|
||||
"csv",
|
||||
"fixtures",
|
||||
"json",
|
||||
"laravel",
|
||||
"yaml"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/DariusIII/l5-fixtures/tree/v3.1.0"
|
||||
},
|
||||
"time": "2023-02-16T15:42:24+00:00"
|
||||
},
|
||||
{
|
||||
"name": "dariusiii/php-itunes-api",
|
||||
"version": "v1.0.11",
|
||||
@@ -2386,22 +2319,22 @@
|
||||
},
|
||||
{
|
||||
"name": "genealabs/laravel-caffeine",
|
||||
"version": "10.0.0",
|
||||
"version": "10.0.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/GeneaLabs/laravel-caffeine.git",
|
||||
"reference": "00ce6549abc3ed57b9c4748d962c9a2263329371"
|
||||
"reference": "b4cef52e57061846bab94a4ae5747463773f13ec"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/GeneaLabs/laravel-caffeine/zipball/00ce6549abc3ed57b9c4748d962c9a2263329371",
|
||||
"reference": "00ce6549abc3ed57b9c4748d962c9a2263329371",
|
||||
"url": "https://api.github.com/repos/GeneaLabs/laravel-caffeine/zipball/b4cef52e57061846bab94a4ae5747463773f13ec",
|
||||
"reference": "b4cef52e57061846bab94a4ae5747463773f13ec",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"illuminate/routing": "^10.0",
|
||||
"illuminate/support": "^10.0",
|
||||
"jenssegers/model": "dev-master@dev"
|
||||
"jenssegers/model": "^1.5"
|
||||
},
|
||||
"require-dev": {
|
||||
"orchestra/testbench": "^8.0",
|
||||
@@ -2436,7 +2369,7 @@
|
||||
"description": "Keeping Your Laravel Forms Awake",
|
||||
"support": {
|
||||
"issues": "https://github.com/GeneaLabs/laravel-caffeine/issues",
|
||||
"source": "https://github.com/GeneaLabs/laravel-caffeine/tree/10.0.0"
|
||||
"source": "https://github.com/GeneaLabs/laravel-caffeine/tree/10.0.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -2444,7 +2377,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2023-03-10T14:32:37+00:00"
|
||||
"time": "2023-03-21T23:22:16+00:00"
|
||||
},
|
||||
{
|
||||
"name": "geoip2/geoip2",
|
||||
@@ -3472,7 +3405,7 @@
|
||||
},
|
||||
{
|
||||
"name": "jenssegers/model",
|
||||
"version": "dev-master",
|
||||
"version": "v1.5.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/jenssegers/model.git",
|
||||
@@ -3492,7 +3425,6 @@
|
||||
"php-coveralls/php-coveralls": "*",
|
||||
"phpunit/phpunit": "*"
|
||||
},
|
||||
"default-branch": true,
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
@@ -4680,93 +4612,6 @@
|
||||
],
|
||||
"time": "2022-12-11T20:36:23+00:00"
|
||||
},
|
||||
{
|
||||
"name": "league/csv",
|
||||
"version": "9.9.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/thephpleague/csv.git",
|
||||
"reference": "b4418ede47fbd88facc34e40a16c8ce9153b961b"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/csv/zipball/b4418ede47fbd88facc34e40a16c8ce9153b961b",
|
||||
"reference": "b4418ede47fbd88facc34e40a16c8ce9153b961b",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-json": "*",
|
||||
"ext-mbstring": "*",
|
||||
"php": "^8.1.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"doctrine/collections": "^2.1.2",
|
||||
"ext-dom": "*",
|
||||
"ext-xdebug": "*",
|
||||
"friendsofphp/php-cs-fixer": "^v3.14.3",
|
||||
"phpbench/phpbench": "^1.2.8",
|
||||
"phpstan/phpstan": "^1.10.4",
|
||||
"phpstan/phpstan-deprecation-rules": "^1.1.2",
|
||||
"phpstan/phpstan-phpunit": "^1.3.10",
|
||||
"phpstan/phpstan-strict-rules": "^1.5.0",
|
||||
"phpunit/phpunit": "^10.0.14"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
|
||||
"ext-iconv": "Needed to ease transcoding CSV using iconv stream filters"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "9.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/functions_include.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"League\\Csv\\": "src"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Ignace Nyamagana Butera",
|
||||
"email": "nyamsprod@gmail.com",
|
||||
"homepage": "https://github.com/nyamsprod/",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"description": "CSV data manipulation made easy in PHP",
|
||||
"homepage": "https://csv.thephpleague.com",
|
||||
"keywords": [
|
||||
"convert",
|
||||
"csv",
|
||||
"export",
|
||||
"filter",
|
||||
"import",
|
||||
"read",
|
||||
"transform",
|
||||
"write"
|
||||
],
|
||||
"support": {
|
||||
"docs": "https://csv.thephpleague.com",
|
||||
"issues": "https://github.com/thephpleague/csv/issues",
|
||||
"rss": "https://github.com/thephpleague/csv/releases.atom",
|
||||
"source": "https://github.com/thephpleague/csv"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/sponsors/nyamsprod",
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2023-03-11T15:57:12+00:00"
|
||||
},
|
||||
{
|
||||
"name": "league/flysystem",
|
||||
"version": "3.12.3",
|
||||
@@ -8916,16 +8761,16 @@
|
||||
},
|
||||
{
|
||||
"name": "sentry/sentry-laravel",
|
||||
"version": "3.3.1",
|
||||
"version": "3.3.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/getsentry/sentry-laravel.git",
|
||||
"reference": "a530699461d6bcc9d11515ad0c97d683173d85b5"
|
||||
"reference": "c502e8b9005990d03f5ec5cc852e98a27c26056d"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/a530699461d6bcc9d11515ad0c97d683173d85b5",
|
||||
"reference": "a530699461d6bcc9d11515ad0c97d683173d85b5",
|
||||
"url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/c502e8b9005990d03f5ec5cc852e98a27c26056d",
|
||||
"reference": "c502e8b9005990d03f5ec5cc852e98a27c26056d",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -8993,7 +8838,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/getsentry/sentry-laravel/issues",
|
||||
"source": "https://github.com/getsentry/sentry-laravel/tree/3.3.1"
|
||||
"source": "https://github.com/getsentry/sentry-laravel/tree/3.3.2"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -9005,7 +8850,7 @@
|
||||
"type": "custom"
|
||||
}
|
||||
],
|
||||
"time": "2023-03-20T14:21:23+00:00"
|
||||
"time": "2023-03-22T10:51:03+00:00"
|
||||
},
|
||||
{
|
||||
"name": "smarty/smarty",
|
||||
@@ -9579,16 +9424,16 @@
|
||||
},
|
||||
{
|
||||
"name": "spatie/laravel-permission",
|
||||
"version": "5.9.1",
|
||||
"version": "5.10.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/spatie/laravel-permission.git",
|
||||
"reference": "a88ed98c8937442737e0c50163682e832d608f13"
|
||||
"reference": "5d0a703ece4636e6bde98eb85ac72b40aa6e42bc"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/spatie/laravel-permission/zipball/a88ed98c8937442737e0c50163682e832d608f13",
|
||||
"reference": "a88ed98c8937442737e0c50163682e832d608f13",
|
||||
"url": "https://api.github.com/repos/spatie/laravel-permission/zipball/5d0a703ece4636e6bde98eb85ac72b40aa6e42bc",
|
||||
"reference": "5d0a703ece4636e6bde98eb85ac72b40aa6e42bc",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -9649,7 +9494,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/spatie/laravel-permission/issues",
|
||||
"source": "https://github.com/spatie/laravel-permission/tree/5.9.1"
|
||||
"source": "https://github.com/spatie/laravel-permission/tree/5.10.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -9657,7 +9502,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2023-02-06T21:37:02+00:00"
|
||||
"time": "2023-03-22T02:57:36+00:00"
|
||||
},
|
||||
{
|
||||
"name": "spatie/laravel-signal-aware-command",
|
||||
@@ -13069,80 +12914,6 @@
|
||||
],
|
||||
"time": "2023-02-24T10:42:00+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/yaml",
|
||||
"version": "v6.2.7",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/yaml.git",
|
||||
"reference": "e8e6a1d59e050525f27a1f530aa9703423cb7f57"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/yaml/zipball/e8e6a1d59e050525f27a1f530aa9703423cb7f57",
|
||||
"reference": "e8e6a1d59e050525f27a1f530aa9703423cb7f57",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=8.1",
|
||||
"symfony/polyfill-ctype": "^1.8"
|
||||
},
|
||||
"conflict": {
|
||||
"symfony/console": "<5.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"symfony/console": "^5.4|^6.0"
|
||||
},
|
||||
"suggest": {
|
||||
"symfony/console": "For validating YAML files using the lint command"
|
||||
},
|
||||
"bin": [
|
||||
"Resources/bin/yaml-lint"
|
||||
],
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Component\\Yaml\\": ""
|
||||
},
|
||||
"exclude-from-classmap": [
|
||||
"/Tests/"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Loads and dumps YAML files",
|
||||
"homepage": "https://symfony.com",
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/yaml/tree/v6.2.7"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2023-02-16T09:57:23+00:00"
|
||||
},
|
||||
{
|
||||
"name": "tijsverkoyen/css-to-inline-styles",
|
||||
"version": "2.2.6",
|
||||
@@ -16392,16 +16163,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpunit/phpunit",
|
||||
"version": "10.0.17",
|
||||
"version": "10.0.18",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sebastianbergmann/phpunit.git",
|
||||
"reference": "b75eddcabca052312ae38c8a2bc69ff1a7b89b77"
|
||||
"reference": "582563ed2edc62d1455cdbe00ea49fe09428eef3"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b75eddcabca052312ae38c8a2bc69ff1a7b89b77",
|
||||
"reference": "b75eddcabca052312ae38c8a2bc69ff1a7b89b77",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/582563ed2edc62d1455cdbe00ea49fe09428eef3",
|
||||
"reference": "582563ed2edc62d1455cdbe00ea49fe09428eef3",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -16473,7 +16244,7 @@
|
||||
"support": {
|
||||
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
|
||||
"security": "https://github.com/sebastianbergmann/phpunit/security/policy",
|
||||
"source": "https://github.com/sebastianbergmann/phpunit/tree/10.0.17"
|
||||
"source": "https://github.com/sebastianbergmann/phpunit/tree/10.0.18"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -16489,20 +16260,20 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2023-03-20T14:42:33+00:00"
|
||||
"time": "2023-03-22T06:15:31+00:00"
|
||||
},
|
||||
{
|
||||
"name": "rector/rector",
|
||||
"version": "0.15.21",
|
||||
"version": "0.15.22",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/rectorphp/rector.git",
|
||||
"reference": "1cee8cc5d6d836e1bf9a3006d7b062adde3a6022"
|
||||
"reference": "5c499ec662a698d5042a3cdc936a4642ada35e19"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/rectorphp/rector/zipball/1cee8cc5d6d836e1bf9a3006d7b062adde3a6022",
|
||||
"reference": "1cee8cc5d6d836e1bf9a3006d7b062adde3a6022",
|
||||
"url": "https://api.github.com/repos/rectorphp/rector/zipball/5c499ec662a698d5042a3cdc936a4642ada35e19",
|
||||
"reference": "5c499ec662a698d5042a3cdc936a4642ada35e19",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -16542,7 +16313,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/rectorphp/rector/issues",
|
||||
"source": "https://github.com/rectorphp/rector/tree/0.15.21"
|
||||
"source": "https://github.com/rectorphp/rector/tree/0.15.22"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -16550,7 +16321,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2023-03-06T11:44:29+00:00"
|
||||
"time": "2023-03-22T09:37:21+00:00"
|
||||
},
|
||||
{
|
||||
"name": "sebastian/cli-parser",
|
||||
@@ -18147,6 +17918,80 @@
|
||||
],
|
||||
"time": "2023-02-14T08:44:56+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/yaml",
|
||||
"version": "v6.2.7",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/yaml.git",
|
||||
"reference": "e8e6a1d59e050525f27a1f530aa9703423cb7f57"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/yaml/zipball/e8e6a1d59e050525f27a1f530aa9703423cb7f57",
|
||||
"reference": "e8e6a1d59e050525f27a1f530aa9703423cb7f57",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=8.1",
|
||||
"symfony/polyfill-ctype": "^1.8"
|
||||
},
|
||||
"conflict": {
|
||||
"symfony/console": "<5.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"symfony/console": "^5.4|^6.0"
|
||||
},
|
||||
"suggest": {
|
||||
"symfony/console": "For validating YAML files using the lint command"
|
||||
},
|
||||
"bin": [
|
||||
"Resources/bin/yaml-lint"
|
||||
],
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Component\\Yaml\\": ""
|
||||
},
|
||||
"exclude-from-classmap": [
|
||||
"/Tests/"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Loads and dumps YAML files",
|
||||
"homepage": "https://symfony.com",
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/yaml/tree/v6.2.7"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2023-02-16T09:57:23+00:00"
|
||||
},
|
||||
{
|
||||
"name": "theseer/tokenizer",
|
||||
"version": "1.2.1",
|
||||
@@ -18203,7 +18048,6 @@
|
||||
"stability-flags": {
|
||||
"anhskohbo/no-captcha": 20,
|
||||
"b3rs3rk/steamfront": 20,
|
||||
"jenssegers/model": 20,
|
||||
"joshpinkney/tv-maze-php-api": 20
|
||||
},
|
||||
"prefer-stable": true,
|
||||
@@ -18236,5 +18080,5 @@
|
||||
"ext-zlib": "*"
|
||||
},
|
||||
"platform-dev": [],
|
||||
"plugin-api-version": "2.3.0"
|
||||
"plugin-api-version": "2.2.0"
|
||||
}
|
||||
|
||||
@@ -1,184 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
0 => [
|
||||
'id' => 1,
|
||||
'groupname' => 'alt\\.binaries\\..*',
|
||||
'regex' => '(brazilian|chinese|croatian|danish|deutsch|dutch|estonian|flemish|finnish|french|german|greek|hebrew|icelandic|italian|latin|nordic|norwegian|polish|portuguese|japenese|japanese|russian|serbian|slovenian|spanish|spanisch|swedish|thai|turkish)[\\)]?( \\-)?[ \\-\\.]((19|20)\\d\\d|(480|720|1080)(i|p)|3d|5\\.1|dts|ac3|truehd|(bd|dvd|hd|sat|vhs|web)\\.?rip|(bd.)?(h|x).?2?64|divx|xvid|bluray|svcd|board|custom|"|(d|h|p|s)d?v?tv|m?dvd(-|sc)?r|int(ernal)?|nzb|par2|\\b(((dc|ld|md|ml|dl|hr|se)[.])|(anime\\.)|(fs|ws)|dsr|pal|ntsc|iso|complete|cracked|ebook|extended|dirfix|festival|proper|game|limited|read.?nfo|real|rerip|repack|remastered|retail|samplefix|scan|screener|theatrical|uncut|unrated|incl|winall)\\b|doku|doc|dub|sub|\\(uncut\\))',
|
||||
'msgcol' => 1,
|
||||
'optype' => 1,
|
||||
'status' => 0,
|
||||
'description' => 'Blacklists non-english releases.',
|
||||
'last_activity' => null,
|
||||
],
|
||||
1 => [
|
||||
'id' => 2,
|
||||
'groupname' => 'alt\\.binaries\\..*',
|
||||
'regex' => '[ -.](bl|cz|de|es|fr|ger|heb|hu|hun|ita|ko|kor|nl|pl|se)[ -.]((19|20)\\d\\d|(480|720|1080)(i|p)|(bd|dvd.?|sat|vhs)?rip?|(bd|dl)mux|( -.)?(dub|sub)(ed|bed)?|complete|convert|(d|h|p|s)d?tv|dirfix|docu|dual|dvbs|dvdscr|eng|(h|x).?2?64|int(ernal)?|pal|proper|repack|xbox)',
|
||||
'msgcol' => 1,
|
||||
'optype' => 1,
|
||||
'status' => 0,
|
||||
'description' => 'Blacklists non-english abbreviated releases.',
|
||||
'last_activity' => null,
|
||||
],
|
||||
2 => [
|
||||
'id' => 3,
|
||||
'groupname' => 'alt\\.binaries\\..*',
|
||||
'regex' => '[ -.]((19|20)\\d\\d|(bd|dvd.?|sat|vhs)?rip?|custom|divx|dts)[ -.](bl|cz|de|es|fr|ger|heb|hu|ita|ko|kor|nl|pl|se)[ -.]',
|
||||
'msgcol' => 1,
|
||||
'optype' => 1,
|
||||
'status' => 0,
|
||||
'description' => 'Blacklists non-english abbreviated (reversed) releases.',
|
||||
'last_activity' => null,
|
||||
],
|
||||
3 => [
|
||||
'id' => 4,
|
||||
'groupname' => 'alt\\.binaries\\..*',
|
||||
'regex' => '[ -.](chinese.subbed|dksubs|fansubs?|finsub|hebdub|hebsub|korsub|norsub|nordicsubs|nl( -.)?sub(ed|bed|s)?|nlvlaams|pldub|plsub|slosinh|swesub|truefrench|vost(fr)?)[ -.]',
|
||||
'msgcol' => 1,
|
||||
'optype' => 1,
|
||||
'status' => 0,
|
||||
'description' => 'Blacklists non-english subtitled releases.',
|
||||
'last_activity' => null,
|
||||
],
|
||||
4 => [
|
||||
'id' => 5,
|
||||
'groupname' => 'alt\\.binaries\\..*',
|
||||
'regex' => '[ -._](4u\\.nl|nov[ a]+rip|realco|videomann|vost)[ -._]',
|
||||
'msgcol' => 1,
|
||||
'optype' => 1,
|
||||
'status' => 0,
|
||||
'description' => 'Blacklists non-english (release group specific) releases.',
|
||||
'last_activity' => null,
|
||||
],
|
||||
5 => [
|
||||
'id' => 6,
|
||||
'groupname' => 'alt\\.binaries\\..*',
|
||||
'regex' => '[ -.]((bd|dl)mux|doku|\\[foreign\\]|seizoen|staffel)[ -.]',
|
||||
'msgcol' => 1,
|
||||
'optype' => 1,
|
||||
'status' => 0,
|
||||
'description' => 'Blacklists non-english (lang specific) releases.',
|
||||
'last_activity' => null,
|
||||
],
|
||||
6 => [
|
||||
'id' => 7,
|
||||
'groupname' => 'alt\\.binaries\\..*',
|
||||
'regex' => '[ -.](imageset|pictureset|xxx)[ -.]',
|
||||
'msgcol' => 1,
|
||||
'optype' => 1,
|
||||
'status' => 0,
|
||||
'description' => 'Blacklists porn releases.',
|
||||
'last_activity' => null,
|
||||
],
|
||||
7 => [
|
||||
'id' => 8,
|
||||
'groupname' => 'alt\\.binaries\\..*',
|
||||
'regex' => 'hdnectar|nzbcave',
|
||||
'msgcol' => 1,
|
||||
'optype' => 1,
|
||||
'status' => 0,
|
||||
'description' => 'Bad releases.',
|
||||
'last_activity' => null,
|
||||
],
|
||||
8 => [
|
||||
'id' => 9,
|
||||
'groupname' => 'alt\\.binaries\\..*',
|
||||
'regex' => 'Passworded',
|
||||
'msgcol' => 1,
|
||||
'optype' => 1,
|
||||
'status' => 0,
|
||||
'description' => 'Removes passworded releases.',
|
||||
'last_activity' => null,
|
||||
],
|
||||
9 => [
|
||||
'id' => 10,
|
||||
'groupname' => 'alt\\.binaries\\.(boneless|movies\\.divx)',
|
||||
'regex' => '((Frkz|info)@XviD2?|x?VIDZ?@pwrpst|movies@movies?)\\.net|(hsv\\.stoned@hotmail|unequal87@gmail|ilove@movies)\\.com',
|
||||
'msgcol' => 2,
|
||||
'optype' => 1,
|
||||
'status' => 0,
|
||||
'description' => 'Virus codec posters.',
|
||||
'last_activity' => null,
|
||||
],
|
||||
10 => [
|
||||
'id' => 11,
|
||||
'groupname' => 'alt\\.binaries\\.tun',
|
||||
'regex' => '\\[PRiVATE\\]\\s+[a-z0-9]+ ',
|
||||
'msgcol' => 1,
|
||||
'optype' => 1,
|
||||
'status' => 0,
|
||||
'description' => 'Passworded/Encrypted junk.',
|
||||
'last_activity' => null,
|
||||
],
|
||||
11 => [
|
||||
'id' => 12,
|
||||
'groupname' => '^alt\\.binaries\\.teevee$',
|
||||
'regex' => '^\\[KoreanTV\\] ',
|
||||
'msgcol' => 1,
|
||||
'optype' => 1,
|
||||
'status' => 0,
|
||||
'description' => 'Blocks posts by koreantv.',
|
||||
'last_activity' => null,
|
||||
],
|
||||
12 => [
|
||||
'id' => 13,
|
||||
'groupname' => '^alt\\.binaries\\.(kenpsx|frogs)$',
|
||||
'regex' => '^\\s*([a-f0-9]{16})\\s\\[\\d+\\/\\d+\\]\\s-\\s\\"\\1\\"\\s+yEnc$',
|
||||
'msgcol' => 1,
|
||||
'optype' => 1,
|
||||
'status' => 0,
|
||||
'description' => 'Block 16 character hash floods in kenpsx frogs.',
|
||||
'last_activity' => null,
|
||||
],
|
||||
13 => [
|
||||
'id' => 14,
|
||||
'groupname' => '^alt\\.binaries\\.multimedia\\.korean$',
|
||||
'regex' => 'TESTMAN',
|
||||
'msgcol' => 2,
|
||||
'optype' => 1,
|
||||
'status' => 1,
|
||||
'description' => 'Posts by TESTMAN (jpegs)',
|
||||
'last_activity' => null,
|
||||
],
|
||||
14 => [
|
||||
'id' => 15,
|
||||
'groupname' => '^alt\\.binaries\\.multimedia\\.korean$',
|
||||
'regex' => '^yEnc ".+torrent"$',
|
||||
'msgcol' => 1,
|
||||
'optype' => 1,
|
||||
'status' => 1,
|
||||
'description' => 'torrent uploads ::: yEnc "SBS ÃñⰡ¿ä.E690.120916.HDTV.H264.720p-KOR.avi.torrent"',
|
||||
'last_activity' => null,
|
||||
],
|
||||
15 => [
|
||||
'id' => 16,
|
||||
'groupname' => '^korea\\.binaries\\.movies$',
|
||||
'regex' => '^.[?(Kornet|SK|xpeed|KT)]?',
|
||||
'msgcol' => 1,
|
||||
'optype' => 1,
|
||||
'status' => 1,
|
||||
'description' => 'Incomplete releases',
|
||||
'last_activity' => null,
|
||||
],
|
||||
16 => [
|
||||
'id' => 17,
|
||||
'groupname' => '^korea\\.binaries\\.movies$',
|
||||
'regex' => '^(top@top.t \\(top\\)|shit@xxxxxxxxaa.com \\(shit\\)|none@nonemail.com \\(none\\))$',
|
||||
'msgcol' => 2,
|
||||
'optype' => 1,
|
||||
'status' => 1,
|
||||
'description' => 'incomplete cryptic releases',
|
||||
'last_activity' => null,
|
||||
],
|
||||
17 => [
|
||||
'id' => 18,
|
||||
'groupname' => '^korea\\.binaries\\.movies$',
|
||||
'regex' => '^filzilla6@web\\.de \\(Baruth\\)$',
|
||||
'msgcol' => 2,
|
||||
'optype' => 1,
|
||||
'status' => 1,
|
||||
'description' => 'Virus Poster',
|
||||
'last_activity' => null,
|
||||
],
|
||||
];
|
||||
@@ -1,684 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
0 => [
|
||||
'id' => 10,
|
||||
'title' => 'Misc',
|
||||
'root_categories_id' => 1,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
2 => [
|
||||
'id' => 20,
|
||||
'title' => 'Hashed',
|
||||
'root_categories_id' => 1,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
4 => [
|
||||
'id' => 1010,
|
||||
'title' => 'NDS',
|
||||
'root_categories_id' => 1000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
5 => [
|
||||
'id' => 1020,
|
||||
'title' => 'PSP',
|
||||
'root_categories_id' => 1000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
6 => [
|
||||
'id' => 1030,
|
||||
'title' => 'Wii',
|
||||
'root_categories_id' => 1000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
7 => [
|
||||
'id' => 1040,
|
||||
'title' => 'Xbox',
|
||||
'root_categories_id' => 1000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
8 => [
|
||||
'id' => 1050,
|
||||
'title' => 'Xbox 360',
|
||||
'root_categories_id' => 1000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
9 => [
|
||||
'id' => 1060,
|
||||
'title' => 'WiiWare/VC',
|
||||
'root_categories_id' => 1000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
10 => [
|
||||
'id' => 1070,
|
||||
'title' => 'Xbox 360 DLC',
|
||||
'root_categories_id' => 1000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
11 => [
|
||||
'id' => 1080,
|
||||
'title' => 'PS3',
|
||||
'root_categories_id' => 1000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
12 => [
|
||||
'id' => 1110,
|
||||
'title' => '3DS',
|
||||
'root_categories_id' => 1000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
13 => [
|
||||
'id' => 1120,
|
||||
'title' => 'PS Vita',
|
||||
'root_categories_id' => 1000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
14 => [
|
||||
'id' => 1130,
|
||||
'title' => 'WiiU',
|
||||
'root_categories_id' => 1000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
15 => [
|
||||
'id' => 1140,
|
||||
'title' => 'Xbox One',
|
||||
'root_categories_id' => 1000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
16 => [
|
||||
'id' => 1180,
|
||||
'title' => 'PS4',
|
||||
'root_categories_id' => 1000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
17 => [
|
||||
'id' => 1999,
|
||||
'title' => 'Other',
|
||||
'root_categories_id' => 1000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
19 => [
|
||||
'id' => 2010,
|
||||
'title' => 'Foreign',
|
||||
'root_categories_id' => 2000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
20 => [
|
||||
'id' => 2030,
|
||||
'title' => 'SD',
|
||||
'root_categories_id' => 2000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
21 => [
|
||||
'id' => 2040,
|
||||
'title' => 'HD',
|
||||
'root_categories_id' => 2000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
22 => [
|
||||
'id' => 2045,
|
||||
'title' => 'UHD',
|
||||
'root_categories_id' => 2000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
23 => [
|
||||
'id' => 2050,
|
||||
'title' => '3D',
|
||||
'root_categories_id' => 2000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
24 => [
|
||||
'id' => 2060,
|
||||
'title' => 'BluRay',
|
||||
'root_categories_id' => 2000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
25 => [
|
||||
'id' => 2070,
|
||||
'title' => 'DVD',
|
||||
'root_categories_id' => 2000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
26 => [
|
||||
'id' => 2080,
|
||||
'title' => 'WEBDL',
|
||||
'root_categories_id' => 2000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
27 => [
|
||||
'id' => 2999,
|
||||
'title' => 'Other',
|
||||
'root_categories_id' => 2000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
29 => [
|
||||
'id' => 3010,
|
||||
'title' => 'MP3',
|
||||
'root_categories_id' => 3000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
30 => [
|
||||
'id' => 3020,
|
||||
'title' => 'Video',
|
||||
'root_categories_id' => 3000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
31 => [
|
||||
'id' => 3030,
|
||||
'title' => 'Audiobook',
|
||||
'root_categories_id' => 3000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
32 => [
|
||||
'id' => 3040,
|
||||
'title' => 'Lossless',
|
||||
'root_categories_id' => 3000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
33 => [
|
||||
'id' => 3060,
|
||||
'title' => 'Foreign',
|
||||
'root_categories_id' => 3000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
34 => [
|
||||
'id' => 3999,
|
||||
'title' => 'Other',
|
||||
'root_categories_id' => 3000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
36 => [
|
||||
'id' => 4010,
|
||||
'title' => '0day',
|
||||
'root_categories_id' => 4000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
37 => [
|
||||
'id' => 4020,
|
||||
'title' => 'ISO',
|
||||
'root_categories_id' => 4000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
38 => [
|
||||
'id' => 4030,
|
||||
'title' => 'Mac',
|
||||
'root_categories_id' => 4000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
39 => [
|
||||
'id' => 4050,
|
||||
'title' => 'Games',
|
||||
'root_categories_id' => 4000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
40 => [
|
||||
'id' => 4060,
|
||||
'title' => 'Phone-IOS',
|
||||
'root_categories_id' => 4000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
41 => [
|
||||
'id' => 4070,
|
||||
'title' => 'Phone-Android',
|
||||
'root_categories_id' => 4000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
42 => [
|
||||
'id' => 4999,
|
||||
'title' => 'Phone-Other',
|
||||
'root_categories_id' => 4000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
44 => [
|
||||
'id' => 5010,
|
||||
'title' => 'WEB-DL',
|
||||
'root_categories_id' => 5000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
45 => [
|
||||
'id' => 5020,
|
||||
'title' => 'Foreign',
|
||||
'root_categories_id' => 5000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
46 => [
|
||||
'id' => 5030,
|
||||
'title' => 'SD',
|
||||
'root_categories_id' => 5000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
47 => [
|
||||
'id' => 5040,
|
||||
'title' => 'HD',
|
||||
'root_categories_id' => 5000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
48 => [
|
||||
'id' => 5045,
|
||||
'title' => 'UHD',
|
||||
'root_categories_id' => 5000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
49 => [
|
||||
'id' => 5060,
|
||||
'title' => 'Sport',
|
||||
'root_categories_id' => 5000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
50 => [
|
||||
'id' => 5070,
|
||||
'title' => 'Anime',
|
||||
'root_categories_id' => 5000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
51 => [
|
||||
'id' => 5080,
|
||||
'title' => 'Documentary',
|
||||
'root_categories_id' => 5000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
52 => [
|
||||
'id' => 5999,
|
||||
'title' => 'Other',
|
||||
'root_categories_id' => 5000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
54 => [
|
||||
'id' => 6010,
|
||||
'title' => 'DVD',
|
||||
'root_categories_id' => 6000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
55 => [
|
||||
'id' => 6020,
|
||||
'title' => 'WMV',
|
||||
'root_categories_id' => 6000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
56 => [
|
||||
'id' => 6030,
|
||||
'title' => 'XviD',
|
||||
'root_categories_id' => 6000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
57 => [
|
||||
'id' => 6040,
|
||||
'title' => 'x264',
|
||||
'root_categories_id' => 6000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
58 => [
|
||||
'id' => 6041,
|
||||
'title' => 'HD Clips',
|
||||
'root_categories_id' => 6000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
59 => [
|
||||
'id' => 6042,
|
||||
'title' => 'SD Clips',
|
||||
'root_categories_id' => 6000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
60 => [
|
||||
'id' => 6045,
|
||||
'title' => 'UHD',
|
||||
'root_categories_id' => 6000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
61 => [
|
||||
'id' => 6060,
|
||||
'title' => 'Imageset',
|
||||
'root_categories_id' => 6000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
62 => [
|
||||
'id' => 6070,
|
||||
'title' => 'Packs',
|
||||
'root_categories_id' => 6000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
63 => [
|
||||
'id' => 6080,
|
||||
'title' => 'SD',
|
||||
'root_categories_id' => 6000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
64 => [
|
||||
'id' => 6090,
|
||||
'title' => 'WEBDL',
|
||||
'root_categories_id' => 6000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
65 => [
|
||||
'id' => 6999,
|
||||
'title' => 'Other',
|
||||
'root_categories_id' => 6000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
67 => [
|
||||
'id' => 7010,
|
||||
'title' => 'Magazines',
|
||||
'root_categories_id' => 7000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
68 => [
|
||||
'id' => 7020,
|
||||
'title' => 'Ebook',
|
||||
'root_categories_id' => 7000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
69 => [
|
||||
'id' => 7030,
|
||||
'title' => 'Comics',
|
||||
'root_categories_id' => 7000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
70 => [
|
||||
'id' => 7040,
|
||||
'title' => 'Technical',
|
||||
'root_categories_id' => 7000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
71 => [
|
||||
'id' => 7060,
|
||||
'title' => 'Foreign',
|
||||
'root_categories_id' => 7000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
72 => [
|
||||
'id' => 7999,
|
||||
'title' => 'Other',
|
||||
'root_categories_id' => 7000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
73 => [
|
||||
'id' => 2090,
|
||||
'title' => 'X265',
|
||||
'root_categories_id' => 2000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
74 => [
|
||||
'id' => 5090,
|
||||
'title' => 'X265',
|
||||
'root_categories_id' => 5000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
75 => [
|
||||
'id' => 3050,
|
||||
'title' => 'Podcast',
|
||||
'root_categories_id' => 3000,
|
||||
'status' => 1,
|
||||
'description' => null,
|
||||
'disablepreview' => 0,
|
||||
'minsizetoformrelease' => 0,
|
||||
'maxsizetoformrelease' => 0,
|
||||
],
|
||||
];
|
||||
@@ -1,13 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
0 => [
|
||||
'id' => 1,
|
||||
'group_regex' => '^alt\\.binaries\\.sony\\.psvita$',
|
||||
'regex' => '/.*/ ',
|
||||
'status' => 1,
|
||||
'description' => '',
|
||||
'ordinal' => 50,
|
||||
'categories_id' => 1120,
|
||||
],
|
||||
];
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,43 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
0 => [
|
||||
'id' => 1,
|
||||
'title' => 'Welcome to NNTmux.',
|
||||
'url' => 'NULL',
|
||||
'body' => '<p>Since NNTmux is a fork of newznab, the API is compatible with sonarr, sickbeard, couchpotato, etc...</p>',
|
||||
'metadescription' => '""',
|
||||
'metakeywords' => '""',
|
||||
'contenttype' => 3,
|
||||
'showinmenu' => 0,
|
||||
'status' => 1,
|
||||
'ordinal' => 0,
|
||||
'role' => 0,
|
||||
],
|
||||
1 => [
|
||||
'id' => 2,
|
||||
'title' => 'example content',
|
||||
'url' => '/great/seo/content/page/',
|
||||
'body' => '<p>this is an example content page</p>',
|
||||
'metadescription' => '""',
|
||||
'metakeywords' => '""',
|
||||
'contenttype' => 1,
|
||||
'showinmenu' => 2,
|
||||
'status' => 1,
|
||||
'ordinal' => 1,
|
||||
'role' => 0,
|
||||
],
|
||||
2 => [
|
||||
'id' => 3,
|
||||
'title' => 'another example',
|
||||
'url' => '/another/great/seo/content/page/',
|
||||
'body' => '<p>this is another example content page</p>',
|
||||
'metadescription' => '""',
|
||||
'metakeywords' => '""',
|
||||
'contenttype' => 1,
|
||||
'showinmenu' => 2,
|
||||
'status' => 1,
|
||||
'ordinal' => 0,
|
||||
'role' => 0,
|
||||
],
|
||||
];
|
||||
@@ -1,898 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
0 => [
|
||||
'id' => 1000001,
|
||||
'title' => 'Blues',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
1 => [
|
||||
'id' => 1000002,
|
||||
'title' => 'Classic Rock',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
2 => [
|
||||
'id' => 1000003,
|
||||
'title' => 'Country',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
3 => [
|
||||
'id' => 1000004,
|
||||
'title' => 'Dance',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
4 => [
|
||||
'id' => 1000005,
|
||||
'title' => 'Disco',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
5 => [
|
||||
'id' => 1000006,
|
||||
'title' => 'Funk',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
6 => [
|
||||
'id' => 1000007,
|
||||
'title' => 'Grunge',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
7 => [
|
||||
'id' => 1000008,
|
||||
'title' => 'Hip-Hop',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
8 => [
|
||||
'id' => 1000009,
|
||||
'title' => 'Jazz',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
9 => [
|
||||
'id' => 1000010,
|
||||
'title' => 'Metal',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
10 => [
|
||||
'id' => 1000011,
|
||||
'title' => 'New Age',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
11 => [
|
||||
'id' => 1000012,
|
||||
'title' => 'Oldies',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
12 => [
|
||||
'id' => 1000013,
|
||||
'title' => 'Other',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
13 => [
|
||||
'id' => 1000014,
|
||||
'title' => 'Pop',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
14 => [
|
||||
'id' => 1000015,
|
||||
'title' => 'R&B',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
15 => [
|
||||
'id' => 1000016,
|
||||
'title' => 'Rap',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
16 => [
|
||||
'id' => 1000017,
|
||||
'title' => 'Reggae',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
17 => [
|
||||
'id' => 1000018,
|
||||
'title' => 'Rock',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
18 => [
|
||||
'id' => 1000019,
|
||||
'title' => 'Techno',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
19 => [
|
||||
'id' => 1000020,
|
||||
'title' => 'Industrial',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
20 => [
|
||||
'id' => 1000021,
|
||||
'title' => 'Alternative',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
21 => [
|
||||
'id' => 1000022,
|
||||
'title' => 'Ska',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
22 => [
|
||||
'id' => 1000023,
|
||||
'title' => 'Death Metal',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
23 => [
|
||||
'id' => 1000024,
|
||||
'title' => 'Pranks',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
24 => [
|
||||
'id' => 1000025,
|
||||
'title' => 'Soundtrack',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
25 => [
|
||||
'id' => 1000026,
|
||||
'title' => 'Euro-Techno',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
26 => [
|
||||
'id' => 1000027,
|
||||
'title' => 'Ambient',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
27 => [
|
||||
'id' => 1000028,
|
||||
'title' => 'Trip-Hop',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
28 => [
|
||||
'id' => 1000029,
|
||||
'title' => 'Vocal',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
29 => [
|
||||
'id' => 1000030,
|
||||
'title' => 'Jazz+Funk',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
30 => [
|
||||
'id' => 1000031,
|
||||
'title' => 'Fusion',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
31 => [
|
||||
'id' => 1000032,
|
||||
'title' => 'Trance',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
32 => [
|
||||
'id' => 1000033,
|
||||
'title' => 'Classical',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
33 => [
|
||||
'id' => 1000034,
|
||||
'title' => 'Instrumental',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
34 => [
|
||||
'id' => 1000035,
|
||||
'title' => 'Acid',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
35 => [
|
||||
'id' => 1000036,
|
||||
'title' => 'House',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
36 => [
|
||||
'id' => 1000037,
|
||||
'title' => 'Game',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
37 => [
|
||||
'id' => 1000038,
|
||||
'title' => 'Sound Clip',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
38 => [
|
||||
'id' => 1000039,
|
||||
'title' => 'Gospel',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
39 => [
|
||||
'id' => 1000040,
|
||||
'title' => 'Noise',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
40 => [
|
||||
'id' => 1000041,
|
||||
'title' => 'Alternative Rock',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
41 => [
|
||||
'id' => 1000042,
|
||||
'title' => 'Bass',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
42 => [
|
||||
'id' => 1000043,
|
||||
'title' => 'Soul',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
43 => [
|
||||
'id' => 1000044,
|
||||
'title' => 'Punk',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
44 => [
|
||||
'id' => 1000045,
|
||||
'title' => 'Space',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
45 => [
|
||||
'id' => 1000046,
|
||||
'title' => 'Meditative',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
46 => [
|
||||
'id' => 1000047,
|
||||
'title' => 'Instrumental Pop',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
47 => [
|
||||
'id' => 1000048,
|
||||
'title' => 'Instrumental Rock',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
48 => [
|
||||
'id' => 1000049,
|
||||
'title' => 'Ethnic',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
49 => [
|
||||
'id' => 1000050,
|
||||
'title' => 'Gothic',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
50 => [
|
||||
'id' => 1000051,
|
||||
'title' => 'Darkwave',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
51 => [
|
||||
'id' => 1000052,
|
||||
'title' => 'Techno-Industrial',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
52 => [
|
||||
'id' => 1000053,
|
||||
'title' => 'Electronic',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
53 => [
|
||||
'id' => 1000054,
|
||||
'title' => 'Pop-Folk',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
54 => [
|
||||
'id' => 1000055,
|
||||
'title' => 'Eurodance',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
55 => [
|
||||
'id' => 1000056,
|
||||
'title' => 'Dream',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
56 => [
|
||||
'id' => 1000057,
|
||||
'title' => 'Southern Rock',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
57 => [
|
||||
'id' => 1000058,
|
||||
'title' => 'Comedy',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
58 => [
|
||||
'id' => 1000059,
|
||||
'title' => 'Cult',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
59 => [
|
||||
'id' => 1000060,
|
||||
'title' => 'Gangsta',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
60 => [
|
||||
'id' => 1000061,
|
||||
'title' => 'Top 40',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
61 => [
|
||||
'id' => 1000062,
|
||||
'title' => 'Christian Rap',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
62 => [
|
||||
'id' => 1000063,
|
||||
'title' => 'Pop/Funk',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
63 => [
|
||||
'id' => 1000064,
|
||||
'title' => 'Jungle',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
64 => [
|
||||
'id' => 1000065,
|
||||
'title' => 'Native US',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
65 => [
|
||||
'id' => 1000066,
|
||||
'title' => 'Cabaret',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
66 => [
|
||||
'id' => 1000067,
|
||||
'title' => 'New Wave',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
67 => [
|
||||
'id' => 1000068,
|
||||
'title' => 'Psychadelic',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
68 => [
|
||||
'id' => 1000069,
|
||||
'title' => 'Rave',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
69 => [
|
||||
'id' => 1000070,
|
||||
'title' => 'Showtunes',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
70 => [
|
||||
'id' => 1000071,
|
||||
'title' => 'Trailer',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
71 => [
|
||||
'id' => 1000072,
|
||||
'title' => 'Lo-Fi',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
72 => [
|
||||
'id' => 1000073,
|
||||
'title' => 'Tribal',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
73 => [
|
||||
'id' => 1000074,
|
||||
'title' => 'Acid Punk',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
74 => [
|
||||
'id' => 1000075,
|
||||
'title' => 'Acid Jazz',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
75 => [
|
||||
'id' => 1000076,
|
||||
'title' => 'Polka',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
76 => [
|
||||
'id' => 1000077,
|
||||
'title' => 'Retro',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
77 => [
|
||||
'id' => 1000078,
|
||||
'title' => 'Musical',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
78 => [
|
||||
'id' => 1000079,
|
||||
'title' => 'Rock & Roll',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
79 => [
|
||||
'id' => 1000080,
|
||||
'title' => 'Hard Rock',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
80 => [
|
||||
'id' => 1000081,
|
||||
'title' => 'Folk',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
81 => [
|
||||
'id' => 1000082,
|
||||
'title' => 'Folk-Rock',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
82 => [
|
||||
'id' => 1000083,
|
||||
'title' => 'National Folk',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
83 => [
|
||||
'id' => 1000084,
|
||||
'title' => 'Swing',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
84 => [
|
||||
'id' => 1000085,
|
||||
'title' => 'Fast Fusion',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
85 => [
|
||||
'id' => 1000086,
|
||||
'title' => 'Bebob',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
86 => [
|
||||
'id' => 1000087,
|
||||
'title' => 'Latin',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
87 => [
|
||||
'id' => 1000088,
|
||||
'title' => 'Revival',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
88 => [
|
||||
'id' => 1000089,
|
||||
'title' => 'Celtic',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
89 => [
|
||||
'id' => 1000090,
|
||||
'title' => 'Bluegrass',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
90 => [
|
||||
'id' => 1000091,
|
||||
'title' => 'Avantgarde',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
91 => [
|
||||
'id' => 1000092,
|
||||
'title' => 'Gothic Rock',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
92 => [
|
||||
'id' => 1000093,
|
||||
'title' => 'Progressive Rock',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
93 => [
|
||||
'id' => 1000094,
|
||||
'title' => 'Psychedelic Rock',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
94 => [
|
||||
'id' => 1000095,
|
||||
'title' => 'Symphonic Rock',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
95 => [
|
||||
'id' => 1000096,
|
||||
'title' => 'Slow Rock',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
96 => [
|
||||
'id' => 1000097,
|
||||
'title' => 'Big Band',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
97 => [
|
||||
'id' => 1000098,
|
||||
'title' => 'Chorus',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
98 => [
|
||||
'id' => 1000099,
|
||||
'title' => 'Easy Listening',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
99 => [
|
||||
'id' => 1000100,
|
||||
'title' => 'Acoustic',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
100 => [
|
||||
'id' => 1000101,
|
||||
'title' => 'Humour',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
101 => [
|
||||
'id' => 1000102,
|
||||
'title' => 'Speech',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
102 => [
|
||||
'id' => 1000103,
|
||||
'title' => 'Chanson',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
103 => [
|
||||
'id' => 1000104,
|
||||
'title' => 'Opera',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
104 => [
|
||||
'id' => 1000105,
|
||||
'title' => 'Chamber Music',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
105 => [
|
||||
'id' => 1000106,
|
||||
'title' => 'Sonata',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
106 => [
|
||||
'id' => 1000107,
|
||||
'title' => 'Symphony',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
107 => [
|
||||
'id' => 1000108,
|
||||
'title' => 'Booty Bass',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
108 => [
|
||||
'id' => 1000109,
|
||||
'title' => 'Primus',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
109 => [
|
||||
'id' => 1000110,
|
||||
'title' => 'Porn Groove',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
110 => [
|
||||
'id' => 1000111,
|
||||
'title' => 'Satire',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
111 => [
|
||||
'id' => 1000112,
|
||||
'title' => 'Slow Jam',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
112 => [
|
||||
'id' => 1000113,
|
||||
'title' => 'Club',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
113 => [
|
||||
'id' => 1000114,
|
||||
'title' => 'Tango',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
114 => [
|
||||
'id' => 1000115,
|
||||
'title' => 'Samba',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
115 => [
|
||||
'id' => 1000116,
|
||||
'title' => 'Folklore',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
116 => [
|
||||
'id' => 1000117,
|
||||
'title' => 'Ballad',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
117 => [
|
||||
'id' => 1000118,
|
||||
'title' => 'Power Ballad',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
118 => [
|
||||
'id' => 1000119,
|
||||
'title' => 'Rhytmic Soul',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
119 => [
|
||||
'id' => 1000120,
|
||||
'title' => 'Freestyle',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
120 => [
|
||||
'id' => 1000121,
|
||||
'title' => 'Duet',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
121 => [
|
||||
'id' => 1000122,
|
||||
'title' => 'Punk Rock',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
122 => [
|
||||
'id' => 1000123,
|
||||
'title' => 'Drum Solo',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
123 => [
|
||||
'id' => 1000124,
|
||||
'title' => 'Acapella',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
124 => [
|
||||
'id' => 1000125,
|
||||
'title' => 'Euro-House',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
125 => [
|
||||
'id' => 1000126,
|
||||
'title' => 'Dance Hall',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
126 => [
|
||||
'id' => 1000127,
|
||||
'title' => 'Goa',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
127 => [
|
||||
'id' => 1000128,
|
||||
'title' => 'Drum & Bass',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
128 => [
|
||||
'id' => 1000129,
|
||||
'title' => 'Club-House',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
129 => [
|
||||
'id' => 1000130,
|
||||
'title' => 'Hardcore',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
130 => [
|
||||
'id' => 1000131,
|
||||
'title' => 'Terror',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
131 => [
|
||||
'id' => 1000132,
|
||||
'title' => 'Indie',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
132 => [
|
||||
'id' => 1000133,
|
||||
'title' => 'BritPop',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
133 => [
|
||||
'id' => 1000134,
|
||||
'title' => 'Negerpunk',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
134 => [
|
||||
'id' => 1000135,
|
||||
'title' => 'Polsk Punk',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
135 => [
|
||||
'id' => 1000136,
|
||||
'title' => 'Beat',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
136 => [
|
||||
'id' => 1000137,
|
||||
'title' => 'Christian Gangsta',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
137 => [
|
||||
'id' => 1000138,
|
||||
'title' => 'Heavy Metal',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
138 => [
|
||||
'id' => 1000139,
|
||||
'title' => 'Black Metal',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
139 => [
|
||||
'id' => 1000140,
|
||||
'title' => 'Crossover',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
140 => [
|
||||
'id' => 1000141,
|
||||
'title' => 'Contemporary C',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
141 => [
|
||||
'id' => 1000142,
|
||||
'title' => 'Christian Rock',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
142 => [
|
||||
'id' => 1000143,
|
||||
'title' => 'Merengue',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
143 => [
|
||||
'id' => 1000144,
|
||||
'title' => 'Salsa',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
144 => [
|
||||
'id' => 1000145,
|
||||
'title' => 'Thrash Metal',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
145 => [
|
||||
'id' => 1000146,
|
||||
'title' => 'Anime',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
146 => [
|
||||
'id' => 1000147,
|
||||
'title' => 'JPop',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
147 => [
|
||||
'id' => 1000148,
|
||||
'title' => 'SynthPop',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
148 => [
|
||||
'id' => 1000149,
|
||||
'title' => 'Electronica',
|
||||
'type' => 3000,
|
||||
'disabled' => 0,
|
||||
],
|
||||
];
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,68 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
0 => [
|
||||
'id' => 1,
|
||||
'title' => 'Other',
|
||||
'status' => 1,
|
||||
'disablepreview' => 0,
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
],
|
||||
1 => [
|
||||
'id' => 1000,
|
||||
'title' => 'Console',
|
||||
'status' => 1,
|
||||
'disablepreview' => 0,
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
],
|
||||
2 => [
|
||||
'id' => 2000,
|
||||
'title' => 'Movies',
|
||||
'status' => 1,
|
||||
'disablepreview' => 0,
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
],
|
||||
3 => [
|
||||
'id' => 3000,
|
||||
'title' => 'Audio',
|
||||
'status' => 1,
|
||||
'disablepreview' => 0,
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
],
|
||||
4 => [
|
||||
'id' => 4000,
|
||||
'title' => 'PC',
|
||||
'status' => 1,
|
||||
'disablepreview' => 0,
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
],
|
||||
5 => [
|
||||
'id' => 5000,
|
||||
'title' => 'TV',
|
||||
'status' => 1,
|
||||
'disablepreview' => 0,
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
],
|
||||
6 => [
|
||||
'id' => 6000,
|
||||
'title' => 'XXX',
|
||||
'status' => 1,
|
||||
'disablepreview' => 0,
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
],
|
||||
7 => [
|
||||
'id' => 7000,
|
||||
'title' => 'Books',
|
||||
'status' => 1,
|
||||
'disablepreview' => 0,
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
],
|
||||
];
|
||||
File diff suppressed because it is too large
Load Diff
@@ -26,7 +26,6 @@ class CreateCategoryRegexesTable extends Migration
|
||||
});
|
||||
|
||||
DB::statement('ALTER TABLE category_regexes AUTO_INCREMENT = 100000;');
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -25,7 +25,6 @@ class CreateCollectionRegexesTable extends Migration
|
||||
});
|
||||
|
||||
DB::statement('ALTER TABLE collection_regexes AUTO_INCREMENT = 100000;');
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -27,7 +27,6 @@ class CreateBinaryblacklistTable extends Migration
|
||||
});
|
||||
|
||||
DB::statement('ALTER TABLE binaryblacklist AUTO_INCREMENT = 100000;');
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -31,7 +31,6 @@ class CreateContentTable extends Migration
|
||||
});
|
||||
|
||||
DB::statement('ALTER TABLE content AUTO_INCREMENT = 100000;');
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -23,7 +23,6 @@ class CreateGenresTable extends Migration
|
||||
});
|
||||
|
||||
DB::statement('ALTER TABLE genres AUTO_INCREMENT = 100000;');
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -32,7 +32,6 @@ class CreateUsenetGroupsTable extends Migration
|
||||
});
|
||||
|
||||
DB::statement('ALTER TABLE usenet_groups AUTO_INCREMENT = 100000;');
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -25,8 +25,6 @@ class CreateReleaseNamingRegexesTable extends Migration
|
||||
});
|
||||
|
||||
DB::statement('ALTER TABLE release_naming_regexes AUTO_INCREMENT = 100000;');
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user