Skip to content

Commit

Permalink
chore: linter 🧽
Browse files Browse the repository at this point in the history
  • Loading branch information
gioboa committed Nov 29, 2024
1 parent e003b26 commit 7b63fd9
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions packages/insights/src/db/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,18 +73,12 @@ export const manifestTable = sqliteTable(
timestamp: integer('timestamp', { mode: 'timestamp_ms' }).notNull(),
},
(table) => ({
publicApiKeyHashIndex: index('idx_manifests_apiKey_hash').on(
table.hash,
table.publicApiKey
),
publicApiKeyHashIndex: index('idx_manifests_apiKey_hash').on(table.hash, table.publicApiKey),
publicApiKeyHashIndex_2: index('idx_manifests_apiKey_hash_2').on(
table.publicApiKey,
table.hash
),
apiTimestamp: index('idx_manifest_api_timestamp').on(
table.publicApiKey,
table.timestamp
),
apiTimestamp: index('idx_manifest_api_timestamp').on(table.publicApiKey, table.timestamp),
publicApiKeyIndex: index('idx_manifests_public_apiKey').on(table.publicApiKey),
hashIndex: index('idx_manifests_hash').on(table.hash),
})
Expand Down

0 comments on commit 7b63fd9

Please sign in to comment.