Skip to content

Commit

Permalink
:)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyscott18 committed Nov 2, 2023
1 parent 543b37c commit 72dbeb4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/core/src/event-store/postgres/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,10 @@ const migrations: Record<string, Migration> = {
.addColumn("address", "varchar(42)", (col) => col.notNull())
.addColumn("eventSelector", "varchar(66)", (col) => col.notNull())
.addColumn("childAddressLocation", "text", (col) => col.notNull()) // `topic${number}` or `offset${number}`
.addColumn("topic0", "varchar(66)")
.addColumn("topic1", "varchar(66)")
.addColumn("topic2", "varchar(66)")
.addColumn("topic3", "varchar(66)")
.execute();
await db.schema
.createTable("factoryLogFilterIntervals")
Expand Down

0 comments on commit 72dbeb4

Please sign in to comment.