mirror of https://github.com/abpframework/eventhub
committed by
GitHub
65 changed files with 19045 additions and 1311 deletions
@ -1,6 +1,6 @@ |
|||
{ |
|||
"sdk": { |
|||
"version": "5.0.201", |
|||
"version": "6.0.100-rc.1.21458.32", |
|||
"rollForward": "latestFeature" |
|||
} |
|||
} |
|||
|
|||
@ -1,4 +1,4 @@ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:5.0 |
|||
COPY bin/Release/net5.0/publish/ app/ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:6.0 |
|||
COPY bin/Release/net6.0/publish/ app/ |
|||
WORKDIR /app |
|||
ENTRYPOINT ["dotnet", "EventHub.Admin.HttpApi.Host.dll"] |
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:5.0 |
|||
COPY bin/Release/net5.0/ app/ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:6.0 |
|||
COPY bin/Release/net6.0/ app/ |
|||
WORKDIR /app |
|||
ENTRYPOINT ["dotnet", "EventHub.BackgroundServices.dll"] |
|||
@ -1,4 +1,4 @@ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:5.0 |
|||
COPY bin/Release/net5.0/ app/ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:6.0 |
|||
COPY bin/Release/net6.0/ app/ |
|||
WORKDIR /app |
|||
ENTRYPOINT ["dotnet", "EventHub.DbMigrator.dll"] |
|||
@ -1,26 +1,27 @@ |
|||
<Project Sdk="Microsoft.NET.Sdk"> |
|||
<Project Sdk="Microsoft.NET.Sdk"> |
|||
|
|||
<Import Project="..\..\common.props" /> |
|||
|
|||
<PropertyGroup> |
|||
<TargetFramework>net5.0</TargetFramework> |
|||
<TargetFramework>net6.0</TargetFramework> |
|||
<RootNamespace>EventHub</RootNamespace> |
|||
</PropertyGroup> |
|||
|
|||
<ItemGroup> |
|||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.*" /> |
|||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.0-rc.*" /> |
|||
</ItemGroup> |
|||
|
|||
<ItemGroup> |
|||
<PackageReference Include="Volo.Abp.BlobStoring.Database.EntityFrameworkCore" Version="4.4.0-rc.1" /> |
|||
<PackageReference Include="Volo.Abp.BlobStoring.Database.EntityFrameworkCore" Version="5.0.0-beta.1" /> |
|||
<ProjectReference Include="..\EventHub.Domain\EventHub.Domain.csproj" /> |
|||
<PackageReference Include="Volo.Abp.EntityFrameworkCore.PostgreSql" Version="4.4.0-rc.1" /> |
|||
<PackageReference Include="Volo.Abp.PermissionManagement.EntityFrameworkCore" Version="4.4.0-rc.1" /> |
|||
<PackageReference Include="Volo.Abp.SettingManagement.EntityFrameworkCore" Version="4.4.0-rc.1" /> |
|||
<PackageReference Include="Volo.Abp.Identity.EntityFrameworkCore" Version="4.4.0-rc.1" /> |
|||
<PackageReference Include="Volo.Abp.IdentityServer.EntityFrameworkCore" Version="4.4.0-rc.1" /> |
|||
<PackageReference Include="Volo.Abp.BackgroundJobs.EntityFrameworkCore" Version="4.4.0-rc.1" /> |
|||
<PackageReference Include="Volo.Abp.AuditLogging.EntityFrameworkCore" Version="4.4.0-rc.1" /> |
|||
<PackageReference Include="Volo.Abp.EntityFrameworkCore.PostgreSql" Version="5.0.0-beta.1" /> |
|||
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.0-rc.*" /> |
|||
<PackageReference Include="Volo.Abp.PermissionManagement.EntityFrameworkCore" Version="5.0.0-beta.1" /> |
|||
<PackageReference Include="Volo.Abp.SettingManagement.EntityFrameworkCore" Version="5.0.0-beta.1" /> |
|||
<PackageReference Include="Volo.Abp.Identity.EntityFrameworkCore" Version="5.0.0-beta.1" /> |
|||
<PackageReference Include="Volo.Abp.IdentityServer.EntityFrameworkCore" Version="5.0.0-beta.1" /> |
|||
<PackageReference Include="Volo.Abp.BackgroundJobs.EntityFrameworkCore" Version="5.0.0-beta.1" /> |
|||
<PackageReference Include="Volo.Abp.AuditLogging.EntityFrameworkCore" Version="5.0.0-beta.1" /> |
|||
</ItemGroup> |
|||
|
|||
</Project> |
|||
|
|||
File diff suppressed because it is too large
@ -0,0 +1,773 @@ |
|||
using System; |
|||
using Microsoft.EntityFrameworkCore.Migrations; |
|||
|
|||
#nullable disable |
|||
|
|||
namespace EventHub.Migrations |
|||
{ |
|||
public partial class Added_IsActive_To_IdentityUser : Migration |
|||
{ |
|||
protected override void Up(MigrationBuilder migrationBuilder) |
|||
{ |
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "Expiration", |
|||
table: "IdentityServerPersistedGrants", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "IdentityServerPersistedGrants", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "ConsumedTime", |
|||
table: "IdentityServerPersistedGrants", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastModificationTime", |
|||
table: "IdentityServerIdentityResources", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "DeletionTime", |
|||
table: "IdentityServerIdentityResources", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "IdentityServerIdentityResources", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "Expiration", |
|||
table: "IdentityServerDeviceFlowCodes", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "IdentityServerDeviceFlowCodes", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "Expiration", |
|||
table: "IdentityServerClientSecrets", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastModificationTime", |
|||
table: "IdentityServerClients", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "DeletionTime", |
|||
table: "IdentityServerClients", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "IdentityServerClients", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastModificationTime", |
|||
table: "IdentityServerApiScopes", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "DeletionTime", |
|||
table: "IdentityServerApiScopes", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "IdentityServerApiScopes", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "Expiration", |
|||
table: "IdentityServerApiResourceSecrets", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastModificationTime", |
|||
table: "IdentityServerApiResources", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "DeletionTime", |
|||
table: "IdentityServerApiResources", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "IdentityServerApiResources", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastModificationTime", |
|||
table: "EhOrganizations", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "DeletionTime", |
|||
table: "EhOrganizations", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "EhOrganizations", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "EhOrganizationMemberships", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "StartTime", |
|||
table: "EhEvents", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastModificationTime", |
|||
table: "EhEvents", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "EndTime", |
|||
table: "EhEvents", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "DeletionTime", |
|||
table: "EhEvents", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "EhEvents", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "EhEventRegistrations", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastModificationTime", |
|||
table: "AbpUsers", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "DeletionTime", |
|||
table: "AbpUsers", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "AbpUsers", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AddColumn<bool>( |
|||
name: "IsActive", |
|||
table: "AbpUsers", |
|||
type: "boolean", |
|||
nullable: false, |
|||
defaultValue: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "AbpUserOrganizationUnits", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "AbpSecurityLogs", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastModificationTime", |
|||
table: "AbpOrganizationUnits", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "DeletionTime", |
|||
table: "AbpOrganizationUnits", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "AbpOrganizationUnits", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "AbpOrganizationUnitRoles", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "ChangeTime", |
|||
table: "AbpEntityChanges", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "NextTryTime", |
|||
table: "AbpBackgroundJobs", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastTryTime", |
|||
table: "AbpBackgroundJobs", |
|||
type: "timestamp with time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "AbpBackgroundJobs", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "ExecutionTime", |
|||
table: "AbpAuditLogs", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "ExecutionTime", |
|||
table: "AbpAuditLogActions", |
|||
type: "timestamp with time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp without time zone"); |
|||
} |
|||
|
|||
protected override void Down(MigrationBuilder migrationBuilder) |
|||
{ |
|||
migrationBuilder.DropColumn( |
|||
name: "IsActive", |
|||
table: "AbpUsers"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "Expiration", |
|||
table: "IdentityServerPersistedGrants", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "IdentityServerPersistedGrants", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "ConsumedTime", |
|||
table: "IdentityServerPersistedGrants", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastModificationTime", |
|||
table: "IdentityServerIdentityResources", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "DeletionTime", |
|||
table: "IdentityServerIdentityResources", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "IdentityServerIdentityResources", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "Expiration", |
|||
table: "IdentityServerDeviceFlowCodes", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "IdentityServerDeviceFlowCodes", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "Expiration", |
|||
table: "IdentityServerClientSecrets", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastModificationTime", |
|||
table: "IdentityServerClients", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "DeletionTime", |
|||
table: "IdentityServerClients", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "IdentityServerClients", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastModificationTime", |
|||
table: "IdentityServerApiScopes", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "DeletionTime", |
|||
table: "IdentityServerApiScopes", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "IdentityServerApiScopes", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "Expiration", |
|||
table: "IdentityServerApiResourceSecrets", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastModificationTime", |
|||
table: "IdentityServerApiResources", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "DeletionTime", |
|||
table: "IdentityServerApiResources", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "IdentityServerApiResources", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastModificationTime", |
|||
table: "EhOrganizations", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "DeletionTime", |
|||
table: "EhOrganizations", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "EhOrganizations", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "EhOrganizationMemberships", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "StartTime", |
|||
table: "EhEvents", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastModificationTime", |
|||
table: "EhEvents", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "EndTime", |
|||
table: "EhEvents", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "DeletionTime", |
|||
table: "EhEvents", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "EhEvents", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "EhEventRegistrations", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastModificationTime", |
|||
table: "AbpUsers", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "DeletionTime", |
|||
table: "AbpUsers", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "AbpUsers", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "AbpUserOrganizationUnits", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "AbpSecurityLogs", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastModificationTime", |
|||
table: "AbpOrganizationUnits", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "DeletionTime", |
|||
table: "AbpOrganizationUnits", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "AbpOrganizationUnits", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "AbpOrganizationUnitRoles", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "ChangeTime", |
|||
table: "AbpEntityChanges", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "NextTryTime", |
|||
table: "AbpBackgroundJobs", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "LastTryTime", |
|||
table: "AbpBackgroundJobs", |
|||
type: "timestamp without time zone", |
|||
nullable: true, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone", |
|||
oldNullable: true); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "CreationTime", |
|||
table: "AbpBackgroundJobs", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "ExecutionTime", |
|||
table: "AbpAuditLogs", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
|
|||
migrationBuilder.AlterColumn<DateTime>( |
|||
name: "ExecutionTime", |
|||
table: "AbpAuditLogActions", |
|||
type: "timestamp without time zone", |
|||
nullable: false, |
|||
oldClrType: typeof(DateTime), |
|||
oldType: "timestamp with time zone"); |
|||
} |
|||
} |
|||
} |
|||
@ -1,4 +1,4 @@ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:5.0 |
|||
COPY bin/Release/net5.0/publish/ app/ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:6.0 |
|||
COPY bin/Release/net6.0/publish/ app/ |
|||
WORKDIR /app |
|||
ENTRYPOINT ["dotnet", "EventHub.HttpApi.Host.dll"] |
|||
@ -1,4 +1,4 @@ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:5.0 |
|||
COPY bin/Release/net5.0/publish/ app/ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:6.0 |
|||
COPY bin/Release/net6.0/publish/ app/ |
|||
WORKDIR /app |
|||
ENTRYPOINT ["dotnet", "EventHub.IdentityServer.dll"] |
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:5.0 |
|||
COPY bin/Release/net5.0/publish/ app/ |
|||
FROM mcr.microsoft.com/dotnet/aspnet:6.0 |
|||
COPY bin/Release/net6.0/publish/ app/ |
|||
WORKDIR /app |
|||
ENTRYPOINT ["dotnet", "EventHub.Web.dll"] |
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue