Skip to content

Commit 3780d05

Browse files
committed
fix: use the correct timestamp column names
1 parent 0090a3a commit 3780d05

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

packages/indexer-common/src/indexer-management/models/indexing-agreement.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,9 @@ export const defineIndexingFeesModels = (sequelize: Sequelize): IndexingFeesMode
203203
modelName: 'IndexingAgreement',
204204
sequelize,
205205
tableName: 'indexing_agreements',
206+
timestamps: true,
207+
createdAt: 'created_at',
208+
updatedAt: 'updated_at',
206209
},
207210
)
208211

0 commit comments

Comments
 (0)