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.
34 lines
685 B
34 lines
685 B
8 years ago
|
let Sequelize = require('sequelize');
|
||
|
let db = syzoj.db;
|
||
|
|
||
|
let model = db.define('problem_tag', {
|
||
|
id: { type: Sequelize.INTEGER, primaryKey: true, autoIncrement: true },
|
||
|
name: { type: Sequelize.STRING },
|
||
|
color: { type: Sequelize.STRING },
|
||
|
}, {
|
||
|
timestamps: false,
|
||
|
tableName: 'problem_tag',
|
||
|
indexes: [
|
||
|
{
|
||
|
unique: true,
|
||
|
fields: ['name'],
|
||
|
}
|
||
|
]
|
||
|
});
|
||
|
|
||
|
let Model = require('./common');
|
||
|
class ProblemTag extends Model {
|
||
|
static async create(val) {
|
||
|
return ProblemTag.fromRecord(ProblemTag.model.build(Object.assign({
|
||
|
name: '',
|
||
|
color: ''
|
||
|
}, val)));
|
||
|
}
|
||
|
|
||
|
getModel() { return model; }
|
||
|
}
|
||
|
|
||
|
ProblemTag.model = model;
|
||
|
|
||
|
module.exports = ProblemTag;
|