Skip to content

Commit 422f539

Browse files
committed
fix: duplicate index name
1 parent 86800f8 commit 422f539

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/backend/src/models/tiles/pg/table-functions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ export function createTable(tableId: string, columnIds: string[]) {
77
table.string(columnId)
88
})
99
table.timestamps(true, true, true)
10-
table.index('createdAt', 'created_at_index')
10+
table.index('createdAt')
1111
})
1212
}

0 commit comments

Comments
 (0)