cuepoints analyzer disabled by default
This commit is contained in:
parent
f5e46c6f3d
commit
87de25052a
7 changed files with 10 additions and 9 deletions
|
@ -5,7 +5,9 @@ from django.db import migrations
|
|||
from ._migrations import legacy_migration_factory
|
||||
|
||||
UP = """
|
||||
alter table "cc_track_types" add column "analyze_cue_points" boolean default 't' not null;
|
||||
alter table "cc_track_types" add column "analyze_cue_points" boolean default 'f' not null;
|
||||
|
||||
update "cc_track_types" set "analyze_cue_points" = 't';
|
||||
"""
|
||||
|
||||
DOWN = """
|
||||
|
|
|
@ -95,7 +95,7 @@ CREATE TABLE "cc_track_types"
|
|||
"visibility" BOOLEAN DEFAULT 't' NOT NULL,
|
||||
"type_name" VARCHAR(64) DEFAULT '' NOT NULL,
|
||||
"description" VARCHAR(255) DEFAULT '' NOT NULL,
|
||||
"analyze_cue_points" BOOLEAN DEFAULT 't' NOT NULL,
|
||||
"analyze_cue_points" BOOLEAN DEFAULT 'f' NOT NULL,
|
||||
PRIMARY KEY ("id"),
|
||||
CONSTRAINT "cc_track_types_id_idx" UNIQUE ("id"),
|
||||
CONSTRAINT "cc_track_types_code_idx" UNIQUE ("code")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue