Genesis commit

This commit is contained in:
Kgothatso
2019-11-23 23:08:03 +02:00
parent 479b59cf51
commit a590b8ff3f
52 changed files with 15901 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
module.exports = function (sequelize, DataTypes, options) {
const model = sequelize.define("extendedPublicKey", {
id: {
type: DataTypes.STRING,
defaultValue: function() {
return options.generateUniqueId()
},
primaryKey: true,
unique: true
},
xpub: {
type: DataTypes.STRING,
allowNull: false,
unique: true
}
}, {
comment: "Extended Public Key belonging to the users of the system"
});
model.associate = (db) => {
model.User = model.belongsTo(db.User);
}
return model;
};