We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80d96d0 commit d8c044dCopy full SHA for d8c044d
postgres/Dockerfile
@@ -17,4 +17,9 @@ COPY ./pgjwt /pgjwt
17
WORKDIR /pgjwt
18
RUN make && make install
19
20
+# pg_amqp - Used by api schema
21
+COPY ./pg_amqp /pg_amqp
22
+WORKDIR /pg_amqp
23
+RUN make && make install
24
+
25
WORKDIR /var/lib/postgresql
postgres/migrations/03-create_api_schema.sql
@@ -24,7 +24,7 @@ create table api.playlist (
-- Create the playlist_assets table
26
create table api.playlist_asset (
27
- id bigint generated always as identity primary key,
+ id bigint generated always as identity,
28
playlist_id bigint references api.playlist (id) not null,
29
asset_id bigint references api.asset (id) not null,
30
/* "The join table determines many-to-many relationships. It must contain
0 commit comments