-
Type:
Task
-
Resolution: Fixed
-
Priority:
Normal
-
Affects Version/s: None
-
Component/s: Schema Change
-
None
For MBS-10062 we need a table:
CREATE TABLE genre_alias ( -- replicate (verbose)
id SERIAL,
genre INTEGER NOT NULL, -- references genre.id
name VARCHAR NOT NULL,
locale TEXT,
edits_pending INTEGER NOT NULL DEFAULT 0 CHECK (edits_pending >= 0),
last_updated TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
primary_for_locale BOOLEAN NOT NULL DEFAULT FALSE,
CONSTRAINT primary_check CHECK ((locale IS NULL AND primary_for_locale IS FALSE) OR (locale IS NOT NULL))
);
- is a dependency of
-
MBS-10062 Add aliases for genres
-
- In Progress
-