bc-stories/server/db/models/blockchain.js
2019-07-13 16:03:04 -04:00

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