Skip to content

Commit f89e871

Browse files
authored
Merge pull request #1014 from OpenSourceFellows/migration_fix
More fixes
2 parents c86eef2 + ca17fa3 commit f89e871

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/db/migrations/20240817143934_create_letter_templates_table.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.exports = {
2121
})
2222

2323
await knex.schema.alterTable('campaigns', (table) => {
24-
table.integer('letter_template_id').unsigned().notNullable()
24+
table.integer('letter_template_id').unsigned()
2525
table.foreign('letter_template_id').references('letter_templates.id')
2626
})
2727
},

0 commit comments

Comments
 (0)