mirror of
https://github.com/chrisbenincasa/tunarr.git
synced 2026-04-18 09:03:35 -04:00
BREAKING CHANGE: A massive paradigm shift in the way libraries and media are accessed within Tunarr.
15 lines
318 B
TypeScript
15 lines
318 B
TypeScript
import { type Kysely } from 'kysely';
|
|
import { processSqlMigrationFile } from './util.ts';
|
|
|
|
export default {
|
|
fullCopy: true,
|
|
|
|
async up(db: Kysely<unknown>) {
|
|
for (const statement of await processSqlMigrationFile(
|
|
'./sql/0010_lazy_nova.sql',
|
|
)) {
|
|
await db.executeQuery(statement);
|
|
}
|
|
},
|
|
};
|