mirror of
https://github.com/twentyhq/twenty.git
synced 2026-06-19 13:21:53 -04:00
* Sync Metadata generates migrations * add execute migrations * fix relations + add isActive on creation * fix composite fields migration * remove dependency * use new metadata setup for seed-dev * fix rebase * remove unused code * fix viewField dev seeds * fix isSystem
19 lines
651 B
TypeScript
19 lines
651 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { DatabaseCommandModule } from 'src/database/commands/database-command.module';
|
|
|
|
import { AppModule } from './app.module';
|
|
|
|
import { WorkspaceSyncMetadataCommandsModule } from './workspace/workspace-sync-metadata/commands/workspace-sync-metadata-commands.module';
|
|
import { WorkspaceMigrationRunnerCommandsModule } from './workspace/workspace-migration-runner/commands/workspace-migration-runner-commands.module';
|
|
|
|
@Module({
|
|
imports: [
|
|
AppModule,
|
|
WorkspaceMigrationRunnerCommandsModule,
|
|
WorkspaceSyncMetadataCommandsModule,
|
|
DatabaseCommandModule,
|
|
],
|
|
})
|
|
export class CommandModule {}
|