2017-08-21 22:27:13 +02:00
|
|
|
module.exports = (sequelize, { STRING, BOOLEAN, INTEGER, TEXT, ARRAY, DECIMAL, DOUBLE }) => {
|
|
|
|
const Certificate = sequelize.define(
|
|
|
|
'Certificate',
|
|
|
|
{
|
|
|
|
address: {
|
|
|
|
type : STRING,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
amount: {
|
|
|
|
type : STRING,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
claimId: {
|
|
|
|
type : STRING,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
claimSequence: {
|
|
|
|
type : INTEGER,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
decodedClaim: {
|
|
|
|
type : BOOLEAN,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
depth: {
|
|
|
|
type : INTEGER,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
effectiveAmount: {
|
|
|
|
type : STRING,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
hasSignature: {
|
|
|
|
type : BOOLEAN,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
height: {
|
|
|
|
type : STRING,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
hex: {
|
|
|
|
type : TEXT('long'),
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
name: {
|
|
|
|
type : STRING,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
nout: {
|
|
|
|
type : INTEGER,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
txid: {
|
|
|
|
type : STRING,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
validAtHeight: {
|
|
|
|
type : STRING,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
outpoint: {
|
|
|
|
type : STRING,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
valueVersion: {
|
|
|
|
type : STRING,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
claimType: {
|
|
|
|
type : STRING,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
certificateVersion: {
|
|
|
|
type : STRING,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
keyType: {
|
|
|
|
type : STRING,
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
publicKey: {
|
|
|
|
type : TEXT('long'),
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
freezeTableName: true,
|
2017-09-26 05:30:45 +02:00
|
|
|
underscored : true,
|
2017-08-21 22:27:13 +02:00
|
|
|
}
|
|
|
|
);
|
2017-09-15 23:41:47 +02:00
|
|
|
|
|
|
|
Certificate.associate = db => {
|
|
|
|
Certificate.belongsTo(db.User, {
|
|
|
|
onDelete : 'cascade',
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-08-21 22:27:13 +02:00
|
|
|
return Certificate;
|
|
|
|
};
|