* Multi-tenant db schemas POC * fix tests and use query builders * remove synchronize * restore updatedAt * remove unnecessary import * use queryRunner * fix camelcase * add migrations for standard objects * Multi-tenant db schemas POC * fix tests and use query builders * remove synchronize * restore updatedAt * remove unnecessary import * use queryRunner * fix camelcase * add migrations for standard objects * add metadata * add comments * remove migrations for now * do not allow connection to public schema for non-remote workspace connection * rename getLastDataSourceMetadataFromWorkspaceIdOrFail * remove schema creation * remove module import
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { DataSourceService } from './services/datasource.service';
|
|
|
|
@Module({
|
|
exports: [DataSourceService],
|
|
providers: [DataSourceService],
|
|
})
|
|
export class DataSourceModule {}
|