Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Commit

Permalink
🐛 Use correct column name for audience relation
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasrohmer committed Oct 25, 2021
1 parent bba5644 commit 144c06f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions database/migrations/1635159198325_audience_fields.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ export default class AudienceFields extends BaseSchema {
table.string('key');
table.string('value');
table
.integer('service_id')
.integer('audience_id')
.unsigned()
.references('services.id')
.references('audiences.id')
.onDelete('CASCADE');

table.timestamps(true);
Expand Down

0 comments on commit 144c06f

Please sign in to comment.