We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c660711 commit be88c5bCopy full SHA for be88c5b
migrations/20240311202914_release_status_materialized.up.sql
@@ -1,6 +1,6 @@
1
DROP VIEW release_build_status;
2
CREATE TABLE release_build_status (
3
- rid INTEGER NOT NULL PRIMARY KEY,
+ rid INTEGER NOT NULL PRIMARY KEY REFERENCES releases ON DELETE CASCADE,
4
last_build_time timestamp with time zone,
5
build_status build_status NOT NULL
6
);
0 commit comments