Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
xsalonx committed Mar 4, 2024
2 parents 0470d15 + ad8e851 commit 43540f4
Showing 3 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -25,6 +25,11 @@ module.exports = {
type: Sequelize.BOOLEAN,
allowNull: false,
},
color: {
type: Sequelize.STRING, // As hex
allowNull: true,
},

archived_at: {
type: Sequelize.DATE,
allowNull: true,
4 changes: 4 additions & 0 deletions lib/database/models/qualityControlFlagType.js
Original file line number Diff line number Diff line change
@@ -37,6 +37,10 @@ module.exports = (sequelize) => {
type: Sequelize.BOOLEAN,
allowNull: false,
},
color: {
type: Sequelize.STRING, // As hex
allowNull: true,
},
archivedAt: {
type: Sequelize.DATE,
allowNull: true,
Original file line number Diff line number Diff line change
@@ -18,6 +18,7 @@
* @property {string} name
* @property {string} method
* @property {boolean} bad
* @property {string} color as hex
*
* @property {boolean} archived
* @property {number} archivedAt

0 comments on commit 43540f4

Please sign in to comment.