]> Some of my projects - localmylist.git/commitdiff
OP is not an episode type
authorAPTX <marek321@gmail.com>
Mon, 23 Jul 2012 23:24:44 +0000 (01:24 +0200)
committerAPTX <marek321@gmail.com>
Mon, 23 Jul 2012 23:24:44 +0000 (01:24 +0200)
localmylist/share/schema/default_config.sql
localmylist/share/schema/schema.sql

index 633b699a024ff35f840d1c7ea2e48f9af501fb1d..c0d587e0ba43eae9bba2c238dd75d8edce234622 100644 (file)
@@ -33,4 +33,3 @@ INSERT INTO episode_type VALUES ('C', 'Credits/Opening/Ending', 2);
 INSERT INTO episode_type VALUES ('T', 'Trailer/Promo/Ads', 3);
 INSERT INTO episode_type VALUES ('P', 'Parody/Fandub', 4);
 INSERT INTO episode_type VALUES ('O', 'Other', 5);
-INSERT INTO episode_type VALUES ('OP', 'Opening/Ending', 6);
index 0bbfe24b36be036c715018a40d0ef8e49a3d465d..e7c274c9c28ef79fac6ff4ca8016cbb98a5979ce 100644 (file)
@@ -1,5 +1,5 @@
 DROP TYPE IF EXISTS episode_type_enum;
-CREATE TYPE episode_type_enum AS ENUM ('', 'S', 'C', 'T', 'P', 'O', 'OP');
+CREATE TYPE episode_type_enum AS ENUM ('', 'S', 'C', 'T', 'P', 'O');
 
 CREATE TABLE anime (
        aid integer NOT NULL,