mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-24 17:03:55 +10:00
use vite+
This commit is contained in:
+19
-19
@@ -5,30 +5,30 @@ import { Pool } from "pg";
|
||||
import { env } from "@/utils/env";
|
||||
|
||||
export async function resetDatabase() {
|
||||
console.log("⌛ Resetting database...");
|
||||
console.log("⌛ Resetting database...");
|
||||
|
||||
const pool = new Pool({ connectionString: env.DATABASE_URL });
|
||||
const db = drizzle({ client: pool });
|
||||
const pool = new Pool({ connectionString: env.DATABASE_URL });
|
||||
const db = drizzle({ client: pool });
|
||||
|
||||
try {
|
||||
await db.transaction(async (tx) => {
|
||||
await tx.execute(sql`DROP SCHEMA drizzle CASCADE`);
|
||||
await tx.execute(sql`CREATE SCHEMA drizzle`);
|
||||
await tx.execute(sql`GRANT ALL ON SCHEMA drizzle TO postgres`);
|
||||
try {
|
||||
await db.transaction(async (tx) => {
|
||||
await tx.execute(sql`DROP SCHEMA drizzle CASCADE`);
|
||||
await tx.execute(sql`CREATE SCHEMA drizzle`);
|
||||
await tx.execute(sql`GRANT ALL ON SCHEMA drizzle TO postgres`);
|
||||
|
||||
await tx.execute(sql`DROP SCHEMA public CASCADE`);
|
||||
await tx.execute(sql`CREATE SCHEMA public`);
|
||||
await tx.execute(sql`GRANT ALL ON SCHEMA public TO postgres`);
|
||||
});
|
||||
await tx.execute(sql`DROP SCHEMA public CASCADE`);
|
||||
await tx.execute(sql`CREATE SCHEMA public`);
|
||||
await tx.execute(sql`GRANT ALL ON SCHEMA public TO postgres`);
|
||||
});
|
||||
|
||||
console.log("✅ Database reset completed");
|
||||
} catch (error) {
|
||||
console.error("🚨 Database reset failed:", error);
|
||||
} finally {
|
||||
await pool.end();
|
||||
}
|
||||
console.log("✅ Database reset completed");
|
||||
} catch (error) {
|
||||
console.error("🚨 Database reset failed:", error);
|
||||
} finally {
|
||||
await pool.end();
|
||||
}
|
||||
}
|
||||
|
||||
if (import.meta.main) {
|
||||
await resetDatabase();
|
||||
await resetDatabase();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user