11 lines
195 B
JavaScript
11 lines
195 B
JavaScript
const Sequelize = require('sequelize')
|
|
const db = require('../db')
|
|
|
|
const Blockchain = db.define('blockchain', {
|
|
hashedStory: {
|
|
type: Sequelize.STRING,
|
|
},
|
|
})
|
|
|
|
module.exports = Blockchain
|