Files
Desktop/ts/sql/migrations/1400-simplify-receipts.std.ts
Fedor Indutny 44076ece79 Rename files
2025-10-16 23:45:44 -07:00

12 lines
355 B
TypeScript

// Copyright 2025 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { WritableDB } from '../Interface.std.js';
export default function updateToSchemaVersion1400(db: WritableDB): void {
db.exec(`
ALTER TABLE donationReceipts DROP COLUMN paymentDetailJson;
ALTER TABLE donationReceipts DROP COLUMN paymentType;
`);
}