Files
twenty/server/src/tenant-migration-runner/commands/tenant-migration-runner-commands.module.ts
T
Weiko 04c618284f Convert metadata tables to camel_case (#2420)
* Convert metadata tables to camelcase

* refactor folder structure

* rename datasourcemetadata

* regenerate metadata schema

* rename dataSourceMetadata to dataSource
2023-11-10 15:33:25 +01:00

13 lines
496 B
TypeScript

import { Module } from '@nestjs/common';
import { TenantMigrationModule } from 'src/metadata/tenant-migration/tenant-migration.module';
import { TenantMigrationRunnerModule } from 'src/tenant-migration-runner/tenant-migration-runner.module';
import { RunTenantMigrationsCommand } from './run-tenant-migrations.command';
@Module({
imports: [TenantMigrationModule, TenantMigrationRunnerModule],
providers: [RunTenantMigrationsCommand],
})
export class TenantMigrationRunnerCommandsModule {}