Skip to content

Commit

Permalink
fix: default value for metadata column
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Sep 13, 2022
1 parent b5dbf74 commit b5e03a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/database/migrations/20220831023546-add-org-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
queryInterface.addColumn(table, 'metadata', {
type: Sequelize.STRING,
allowNull: true,
defaultValue: {},
defaultValue: '{}',
});
}),
);
Expand Down

0 comments on commit b5e03a8

Please sign in to comment.