mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-18 16:08:48 +00:00
컴파일 오류 등 수정
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { Kysely } from "kysely";
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
export const up = async (db: Kysely<any>) => {
|
||||
// user.ts
|
||||
await db.schema
|
||||
@@ -203,6 +204,7 @@ export const up = async (db: Kysely<any>) => {
|
||||
.execute();
|
||||
};
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
export const down = async (db: Kysely<any>) => {
|
||||
await db.schema.dropTable("file_log").execute();
|
||||
await db.schema.dropTable("file").execute();
|
||||
|
||||
Reference in New Issue
Block a user