mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
12 lines
118 B
TypeScript
12 lines
118 B
TypeScript
|
|
export class Seeder {
|
|
knex: any;
|
|
|
|
constructor(knex) {
|
|
this.knex = knex;
|
|
}
|
|
up(knex) {}
|
|
down(knex) {}
|
|
}
|
|
|