Remove separate part composers

This commit is contained in:
Elias Projahn 2021-02-07 09:44:52 +01:00
parent 59acc460f8
commit c0cfb1abfe
3 changed files with 1 additions and 21 deletions

View file

@ -37,8 +37,7 @@ CREATE TABLE work_parts (
id BIGINT NOT NULL PRIMARY KEY,
work TEXT NOT NULL REFERENCES works(id) ON DELETE CASCADE,
part_index BIGINT NOT NULL,
title TEXT NOT NULL,
composer TEXT REFERENCES persons(id)
title TEXT NOT NULL
);
CREATE TABLE work_sections (