We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ced1bf5 commit c0629ccCopy full SHA for c0629cc
seeder/src/main/database/_base.ts
@@ -1,8 +1,8 @@
1
import BetterSqlite3 from "better-sqlite3";
2
3
export class BaseDatabase {
4
- migration_queue: any[] = [];
5
- db: BetterSqlite3.Database;
+ protected migration_queue: any[] = [];
+ protected db: BetterSqlite3.Database;
6
7
constructor(db: BetterSqlite3.Database) {
8
this.db = db;
0 commit comments