mirror of https://github.com/GOSTSec/gostexplr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
846 B
33 lines
846 B
'use strict'; |
|
module.exports = (sequelize, DataTypes) => { |
|
const Block = sequelize.define('Block', { |
|
height: { |
|
type: DataTypes.INTEGER.UNSIGNED, |
|
primaryKey: true, |
|
}, |
|
hash: DataTypes.STRING(64), |
|
confirmations: DataTypes.MEDIUMINT.UNSIGNED, |
|
size: DataTypes.MEDIUMINT.UNSIGNED, |
|
version: DataTypes.TINYINT.UNSIGNED, |
|
merkleroot: DataTypes.STRING(64), |
|
time: DataTypes.DATE, |
|
nonce: DataTypes.BIGINT, |
|
bits: DataTypes.STRING(8), |
|
difficulty: DataTypes.DECIMAL(16, 8), |
|
previousblockhash: DataTypes.STRING(64), |
|
nextblockhash: DataTypes.STRING(64), |
|
}, { |
|
timestamps: false, |
|
indexes: [{ |
|
unique: true, |
|
fields: ['hash', 'height'] |
|
}], |
|
freezeTableName: true, |
|
}); |
|
|
|
Block.associate = function(models) { |
|
models.Block.hasMany(models.Transaction); |
|
}; |
|
|
|
return Block; |
|
}; |