Initial donationReceipts data types

This commit is contained in:
Scott Nonnenberg
2025-06-17 05:33:00 +10:00
committed by GitHub
parent 4347964030
commit 9ffee9d290
15 changed files with 472 additions and 5 deletions

View File

@@ -6,7 +6,6 @@ import { assert } from 'chai';
import { sql } from '../../sql/util';
import { createDB, explain, updateToVersion } from './helpers';
import type { WritableDB } from '../../sql/Interface';
import { DataWriter } from '../../sql/Server';
describe('SQL/updateToSchemaVersion1360', () => {
let db: WritableDB;
@@ -14,7 +13,6 @@ describe('SQL/updateToSchemaVersion1360', () => {
beforeEach(async () => {
db = createDB();
updateToVersion(db, 1360);
await DataWriter.removeAll(db);
});
afterEach(() => {