mirror of
https://github.com/Dictionarry-Hub/database.git
synced 2026-03-18 02:50:09 -04:00
Compare commits
3 Commits
187968d26e
...
v2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c0cdc5212e | ||
|
|
286e6ce0b1 | ||
|
|
c920863bee |
28
ops/96.add-ilovehd-to-1080p-quality-tier-5.sql
Normal file
28
ops/96.add-ilovehd-to-1080p-quality-tier-5.sql
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
-- @operation: export
|
||||||
|
-- @entity: batch
|
||||||
|
-- @name: Add iLoveHD to 1080p Quality Tier 5
|
||||||
|
-- @exportedAt: 2026-03-15T00:12:16.337Z
|
||||||
|
-- @opIds: 3005, 3006, 3007
|
||||||
|
|
||||||
|
-- --- BEGIN op 3005 ( create regular_expression "iLoveHD" )
|
||||||
|
insert into "regular_expressions" ("name", "pattern", "description", "regex101_id") values ('iLoveHD', '(?<=^|[\s.-])ADE\b', NULL, NULL);
|
||||||
|
|
||||||
|
insert into "tags" ("name") values ('Bluray') on conflict ("name") do nothing;
|
||||||
|
|
||||||
|
INSERT INTO regular_expression_tags (regular_expression_name, tag_name) VALUES ('iLoveHD', 'Bluray');
|
||||||
|
|
||||||
|
insert into "tags" ("name") values ('Release Group') on conflict ("name") do nothing;
|
||||||
|
|
||||||
|
INSERT INTO regular_expression_tags (regular_expression_name, tag_name) VALUES ('iLoveHD', 'Release Group');
|
||||||
|
-- --- END op 3005
|
||||||
|
|
||||||
|
-- --- BEGIN op 3006 ( update regular_expression "iLoveHD" )
|
||||||
|
update "regular_expressions" set "pattern" = '(?<=^|[\s.-])iLoveHD\b' where "name" = 'iLoveHD' and "pattern" = '(?<=^|[\s.-])ADE\b';
|
||||||
|
-- --- END op 3006
|
||||||
|
|
||||||
|
-- --- BEGIN op 3007 ( update custom_format "1080p Quality Tier 5" )
|
||||||
|
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
|
||||||
|
VALUES ('1080p Quality Tier 5', 'iLoveHD', 'release_group', 'all', 0, 0);
|
||||||
|
|
||||||
|
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Quality Tier 5', 'iLoveHD', 'iLoveHD');
|
||||||
|
-- --- END op 3007
|
||||||
12
ops/97.add-visum-to-1080p-quality-tier-5.sql
Normal file
12
ops/97.add-visum-to-1080p-quality-tier-5.sql
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
-- @operation: export
|
||||||
|
-- @entity: batch
|
||||||
|
-- @name: Add ViSUM to 1080p Quality Tier 5
|
||||||
|
-- @exportedAt: 2026-03-15T14:52:11.983Z
|
||||||
|
-- @opIds: 3009
|
||||||
|
|
||||||
|
-- --- BEGIN op 3009 ( update custom_format "1080p Quality Tier 5" )
|
||||||
|
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
|
||||||
|
VALUES ('1080p Quality Tier 5', 'ViSUM', 'release_group', 'all', 0, 0);
|
||||||
|
|
||||||
|
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Quality Tier 5', 'ViSUM', 'ViSUM');
|
||||||
|
-- --- END op 3009
|
||||||
47
ops/98.prevent-yogi-double-matching.sql
Normal file
47
ops/98.prevent-yogi-double-matching.sql
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
-- @operation: export
|
||||||
|
-- @entity: batch
|
||||||
|
-- @name: Prevent Yogi Double Matching
|
||||||
|
-- @exportedAt: 2026-03-18T03:20:13.732Z
|
||||||
|
-- @opIds: 3011, 3012, 3013, 3014, 3015, 3016
|
||||||
|
|
||||||
|
-- --- BEGIN op 3011 ( update custom_format "1080p Efficient Movie Bluray Tier 1" )
|
||||||
|
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
|
||||||
|
VALUES ('1080p Efficient Movie Bluray Tier 1', 'Not HONE', 'release_title', 'all', 1, 1);
|
||||||
|
|
||||||
|
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Efficient Movie Bluray Tier 1', 'Not HONE', 'HONE');
|
||||||
|
-- --- END op 3011
|
||||||
|
|
||||||
|
-- --- BEGIN op 3012 ( update custom_format "1080p Efficient Movie WEB Tier 1" )
|
||||||
|
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
|
||||||
|
VALUES ('1080p Efficient Movie WEB Tier 1', 'Not HONE', 'release_title', 'all', 1, 1);
|
||||||
|
|
||||||
|
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Efficient Movie WEB Tier 1', 'Not HONE', 'HONE');
|
||||||
|
-- --- END op 3012
|
||||||
|
|
||||||
|
-- --- BEGIN op 3013 ( update custom_format "1080p Efficient TV Bluray Tier 1" )
|
||||||
|
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
|
||||||
|
VALUES ('1080p Efficient TV Bluray Tier 1', 'Not HONE', 'release_title', 'all', 1, 1);
|
||||||
|
|
||||||
|
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Efficient TV Bluray Tier 1', 'Not HONE', 'HONE');
|
||||||
|
-- --- END op 3013
|
||||||
|
|
||||||
|
-- --- BEGIN op 3014 ( update custom_format "1080p Efficient TV WEB Tier 1" )
|
||||||
|
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
|
||||||
|
VALUES ('1080p Efficient TV WEB Tier 1', 'Not HONE', 'release_title', 'all', 1, 1);
|
||||||
|
|
||||||
|
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Efficient TV WEB Tier 1', 'Not HONE', 'HONE');
|
||||||
|
-- --- END op 3014
|
||||||
|
|
||||||
|
-- --- BEGIN op 3015 ( update custom_format "2160p Efficient TV Bluray Tier 1" )
|
||||||
|
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
|
||||||
|
VALUES ('2160p Efficient TV Bluray Tier 1', 'Not HONE', 'release_title', 'all', 1, 1);
|
||||||
|
|
||||||
|
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('2160p Efficient TV Bluray Tier 1', 'Not HONE', 'HONE');
|
||||||
|
-- --- END op 3015
|
||||||
|
|
||||||
|
-- --- BEGIN op 3016 ( update custom_format "2160p Efficient TV WEB Tier 1" )
|
||||||
|
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
|
||||||
|
VALUES ('2160p Efficient TV WEB Tier 1', 'Not HONE', 'release_title', 'all', 1, 1);
|
||||||
|
|
||||||
|
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('2160p Efficient TV WEB Tier 1', 'Not HONE', 'HONE');
|
||||||
|
-- --- END op 3016
|
||||||
Reference in New Issue
Block a user