mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-31 11:49:14 +01:00
* feat: add user groups * wip: add unit tests * wip: add more tests and normalized name for creation and update * test: add unit tests for group router * fix: type issues, missing mysql schema, rename column creator_id to owner_id * fix: lint and format issues * fix: deepsource issues * fix: forgot to add log message * fix: build not working * chore: address pull request feedback * feat: add mysql migration and fix merge conflicts * fix: format issue and test issue
12 lines
361 B
TypeScript
12 lines
361 B
TypeScript
import Database from "better-sqlite3";
|
|
import { drizzle } from "drizzle-orm/better-sqlite3";
|
|
import { migrate } from "drizzle-orm/better-sqlite3/migrator";
|
|
|
|
const migrationsFolder = process.argv[2] ?? "./migrations/sqlite";
|
|
|
|
const sqlite = new Database(process.env.DB_URL?.replace("file:", ""));
|
|
|
|
const db = drizzle(sqlite);
|
|
|
|
migrate(db, { migrationsFolder });
|