Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import type { Knex } from "knex";

// This migration ran in production (recorded in knex_migrations) but its file
// was accidentally deleted in commit 7b7f1e1d. It converted user_addresses.id
// from serial int to varchar(36) UUID — the create-table migration
// (20250715000000) now creates the correct schema directly, so fresh DBs need
// nothing. The file must exist with this exact name or knex refuses to run
// any migrations ("migration directory is corrupt").
export async function up(_knex: Knex): Promise<void> {}

export async function down(_knex: Knex): Promise<void> {}
Loading