Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run database migration on server startup independently #125

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions server/plugins/1.on-startup.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { randomUUID } from 'uncrypto';
import { seedDatabase, type SeedPayload } from '../utils/tasks/seed-database';
import { runMigrations } from '../tasks/db/migrate';

export default defineNitroPlugin(async () => {
const startKey = randomUUID();
Expand All @@ -8,6 +9,7 @@ export default defineNitroPlugin(async () => {
startKey,
};

await runMigrations();
await seedDatabase(payload);
await configureStorage();
await configureCache();
Expand Down
24 changes: 24 additions & 0 deletions server/tasks/db/migrate.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import { migrate } from 'drizzle-orm/node-postgres/migrator';

export const runMigrations = async () => {
const db = await useDatabase();
try {
await migrate(db, {
migrationsFolder: 'server/db/migrations',
});
console.log('Database migrations done');
} catch (error) {
console.error('Database migrations failed', error);
}
};

export default defineTask({
meta: {
name: 'db:migrate',
description: 'Run database migrations',
},
async run() {
await runMigrations();
return { result: undefined };
},
});