// SPDX-FileCopyrightText: 2025 Contributors to the CitrineOS Project // // SPDX-License-Identifier: Apache-2.0 import { DataTypes, QueryInterface } from 'sequelize'; export async function up(queryInterface: QueryInterface): Promise { await queryInterface.addColumn('InstallCertificateAttempts', 'requestId', { type: DataTypes.INTEGER, allowNull: true, }); } export async function down(queryInterface: QueryInterface): Promise { await queryInterface.removeColumn('InstallCertificateAttempts', 'requestId'); }