mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
fix: hotbugs in multi-tenant arch.
This commit is contained in:
13
server/cli/tenants.js
Normal file
13
server/cli/tenants.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import { program } from 'commander';
|
||||
|
||||
program
|
||||
.version('0.0.1')
|
||||
.description('An application for pizzas ordering')
|
||||
.command('tenants:migrate')
|
||||
.description('Migrate all tenants or the given tenant id.')
|
||||
.option('-t, --tenant_id [tenant_id]', 'Which tenant id do you migrate.')
|
||||
.action(async () => {
|
||||
|
||||
});
|
||||
|
||||
program.parse(process.argv);
|
||||
Reference in New Issue
Block a user