Skip to content

Commit f1bdc5b

Browse files
committed
fix tests
1 parent ce8f485 commit f1bdc5b

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

apps/api/tests/cost-usage-event.test.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,13 @@ function createUsageEventDatabase(): SqliteD1Database {
8484
usage_contract text NOT NULL,
8585
UNIQUE (source, source_event_id)
8686
);
87+
88+
CREATE TABLE usage_event_rollup_receipt (
89+
rolled_up_at integer NOT NULL,
90+
source text NOT NULL,
91+
source_event_id text NOT NULL,
92+
PRIMARY KEY (source, source_event_id)
93+
);
8794
`);
8895

8996
return database;

apps/driver

Submodule driver updated 273 files

0 commit comments

Comments
 (0)