diff --git a/packages/indexer-agent/src/db/migrations/12-add-scalar-tap-table.ts b/packages/indexer-agent/src/db/migrations/12-add-scalar-tap-table.ts index 1cbee920c..6ef63eaeb 100644 --- a/packages/indexer-agent/src/db/migrations/12-add-scalar-tap-table.ts +++ b/packages/indexer-agent/src/db/migrations/12-add-scalar-tap-table.ts @@ -115,10 +115,6 @@ export async function up({ context }: Context): Promise { type: DataTypes.DECIMAL(20), allowNull: false, }, - error_log:{ - type: DataTypes.TEXT, - allowNull: false, - } }) } diff --git a/packages/indexer-common/src/query-fees/models.ts b/packages/indexer-common/src/query-fees/models.ts index 1a6b57220..821875ee5 100644 --- a/packages/indexer-common/src/query-fees/models.ts +++ b/packages/indexer-common/src/query-fees/models.ts @@ -11,7 +11,6 @@ export interface ScalarTapReceiptsAttributes { timestamp_ns: bigint nonce: bigint value: bigint - error_log?: string } export class ScalarTapReceipts extends Model @@ -40,7 +39,6 @@ export class ScalarTapReceiptsInvalid public nonce!: bigint public value!: bigint public signature!: Uint8Array - public error_log!: string declare createdAt: CreationOptional declare updatedAt: CreationOptional @@ -659,10 +657,6 @@ export function defineQueryFeeModels(sequelize: Sequelize): QueryFeeModels { type: DataTypes.BLOB, allowNull: false, }, - error_log: { - type: DataTypes.TEXT, - allowNull: false, - }, }, { underscored: true,