Added way to track license seats
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2022-11-14 10:54:44 -05:00
parent 6db18f63d6
commit 30bf9beea5
6 changed files with 52 additions and 4 deletions

View File

@@ -13,6 +13,16 @@ module.exports = (sequelize, Sequelize) => {
type: Sequelize.STRING,
},
seatsUsed: {
type: Sequelize.NUMBER,
default: 0,
},
seatsTotal: {
type: Sequelize.NUMBER,
default: 1,
},
purchasedFrom: {
type: Sequelize.STRING,
},