Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaanus committed Aug 30, 2024
1 parent 4a37673 commit e73fd41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/migrations/20240830102144-onboarding-events.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ exports.up = function (db, cb) {
CREATE TABLE onboarding_events_project (
event VARCHAR(255) NOT NULL,
time_to_event INTEGER NOT NULL,
project VARCHAR(255) REFERENCES projects(id) ON DELETE CASCADE,
project VARCHAR(255) NOT NULL REFERENCES projects(id) ON DELETE CASCADE,
PRIMARY KEY (event, project)
);
`,
Expand Down

0 comments on commit e73fd41

Please sign in to comment.