UNPKG

@oleksiiteplenko/tt

Version:

CLI tool for tracking time on projects.

10 lines (6 loc) 245 B
import { Database } from "bun:sqlite"; import { drizzle } from "drizzle-orm/bun-sqlite"; import { dbPath } from './utils/dbPath'; const sqlite = new Database(dbPath); sqlite.run('PRAGMA foreign_keys = ON'); export const db = drizzle(sqlite);