mirror of https://github.com/status-im/codimd.git
19 lines
333 B
JavaScript
19 lines
333 B
JavaScript
'use strict'
|
|
// external modules
|
|
var shortId = require('shortid')
|
|
|
|
module.exports = function (sequelize, DataTypes) {
|
|
var Temp = sequelize.define('Temp', {
|
|
id: {
|
|
type: DataTypes.STRING,
|
|
primaryKey: true,
|
|
defaultValue: shortId.generate
|
|
},
|
|
data: {
|
|
type: DataTypes.TEXT
|
|
}
|
|
})
|
|
|
|
return Temp
|
|
}
|