We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5e47c4 commit e1d7a01Copy full SHA for e1d7a01
lib/db/migrations.ts
@@ -88,16 +88,6 @@ export function migrations(dbType: DatabaseDriverName) {
88
},
89
$4_cache_entry_created_at: {
90
async up(db) {
91
- await db
92
- .insertInto('cache_keys')
93
- .values({
94
- id: '',
95
- key: '',
96
- version: '',
97
- updated_at: new Date().toISOString(),
98
- accessed_at: new Date().toISOString(),
99
- })
100
- .execute()
101
await db.schema.alterTable('cache_keys').addColumn('created_at', 'text').execute()
102
103
await db
0 commit comments