// falukant/data/vote.js import { Model, DataTypes } from 'sequelize'; import { sequelize } from '../../../utils/sequelize.js'; class Vote extends Model {} Vote.init({ id: { type: DataTypes.INTEGER, primaryKey: true, autoIncrement: true, }, election_id: { type: DataTypes.INTEGER, allowNull: false, }, voter_character_id: { type: DataTypes.INTEGER, allowNull: false, }, candidate_id: { type: DataTypes.INTEGER, allowNull: false, }, timestamp: { type: DataTypes.DATE, allowNull: false, defaultValue: DataTypes.NOW, }, }, { sequelize, modelName: 'Vote', tableName: 'vote', schema: 'falukant_data', timestamps: false, underscored: true, }); export default Vote;