All checks were successful
Deploy to production / deploy (push) Successful in 3m3s
- Added new political powers and benefits functionalities, including reputation ticks, tax jurisdiction management, and appointment capabilities. - Introduced a new job for periodic reputation updates and created necessary database tables for tracking political benefits. - Enhanced the FalukantController and services to support new endpoints for managing political powers and appointments. - Updated localization files to reflect new features and improve user experience across multiple languages. - Modified the UI to display new political powers and benefits, ensuring accurate representation in the PoliticsView.
47 lines
1020 B
JavaScript
47 lines
1020 B
JavaScript
import { Model, DataTypes } from 'sequelize';
|
|
import { sequelize } from '../../../utils/sequelize.js';
|
|
|
|
class RegionTaxHistory extends Model {}
|
|
|
|
RegionTaxHistory.init(
|
|
{
|
|
regionId: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: false,
|
|
field: 'region_id'
|
|
},
|
|
oldTaxPercent: {
|
|
type: DataTypes.DECIMAL(12, 4),
|
|
allowNull: false,
|
|
field: 'old_tax_percent'
|
|
},
|
|
newTaxPercent: {
|
|
type: DataTypes.DECIMAL(12, 4),
|
|
allowNull: false,
|
|
field: 'new_tax_percent'
|
|
},
|
|
setterCharacterId: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: false,
|
|
field: 'setter_character_id'
|
|
},
|
|
politicalOfficeId: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: true,
|
|
field: 'political_office_id'
|
|
}
|
|
},
|
|
{
|
|
sequelize,
|
|
modelName: 'RegionTaxHistory',
|
|
tableName: 'region_tax_history',
|
|
schema: 'falukant_data',
|
|
timestamps: true,
|
|
createdAt: 'created_at',
|
|
updatedAt: false,
|
|
underscored: true
|
|
}
|
|
);
|
|
|
|
export default RegionTaxHistory;
|