spee.ch/models/file.js

49 lines
922 B
JavaScript
Raw Normal View History

2017-06-22 08:33:03 +02:00
module.exports = (sequelize, { STRING, BOOLEAN, INTEGER }) => {
const File = sequelize.define(
'File',
{
name: {
type : STRING,
allowNull: false,
},
2017-06-20 00:25:14 +02:00
claimId: {
type : STRING,
allowNull: false,
},
address: {
type : STRING,
allowNull: false,
},
outpoint: {
type : STRING,
allowNull: false,
},
2017-06-22 08:33:03 +02:00
height: {
type : INTEGER,
allowNull: false,
default : 0,
},
2017-06-20 00:25:14 +02:00
fileName: {
type : STRING,
allowNull: false,
},
2017-06-20 00:25:14 +02:00
filePath: {
type : STRING,
allowNull: false,
},
2017-06-20 00:25:14 +02:00
fileType: {
type: STRING,
},
nsfw: {
type : BOOLEAN,
allowNull : false,
defaultValue: false,
},
},
{
freezeTableName: true,
}
);
return File;
};