Erster Aufbau Forum

This commit is contained in:
Torsten Schulz
2024-10-15 16:28:42 +02:00
parent c31be3f879
commit 663564aa96
163 changed files with 9449 additions and 116 deletions

View File

@@ -26,6 +26,7 @@ Diary.init({
tableName: 'diary',
schema: 'community',
timestamps: true,
underscored: true,
});
export default Diary;

View File

@@ -15,7 +15,7 @@ DiaryHistory.init({
oldText: {
type: DataTypes.TEXT,
allowNull: false,
},
},
oldCreatedAt: {
type: DataTypes.DATE,
allowNull: false,
@@ -30,6 +30,7 @@ DiaryHistory.init({
tableName: 'diary_history',
schema: 'community',
timestamps: false,
underscored: true,
});
export default DiaryHistory;