@ -6,7 +6,7 @@ using Microsoft.EntityFrameworkCore.Migrations;
namespace Lion.AbpPro.Migrations
{
/// <inheritdoc />
public partial class Init : Migration
public partial class _100 : Migration
{
/// <inheritdoc />
protected override void Up ( MigrationBuilder migrationBuilder )
@ -18,7 +18,7 @@ namespace Lion.AbpPro.Migrations
Id = table . Column < Guid > ( type : "uuid" , nullable : false ) ,
TenantId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
FileName = table . Column < string > ( type : "character varying(256)" , maxLength : 2 5 6 , nullable : true ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
CreatorId = table . Column < Guid > ( type : "uuid" , nullable : true )
} ,
constraints : table = >
@ -40,7 +40,7 @@ namespace Lion.AbpPro.Migrations
ImpersonatorUserName = table . Column < string > ( type : "character varying(256)" , maxLength : 2 5 6 , nullable : true ) ,
ImpersonatorTenantId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
ImpersonatorTenantName = table . Column < string > ( type : "character varying(64)" , maxLength : 6 4 , nullable : true ) ,
ExecutionTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
ExecutionTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
ExecutionDuration = table . Column < int > ( type : "integer" , nullable : false ) ,
ClientIpAddress = table . Column < string > ( type : "character varying(64)" , maxLength : 6 4 , nullable : true ) ,
ClientName = table . Column < string > ( type : "character varying(128)" , maxLength : 1 2 8 , nullable : true ) ,
@ -69,9 +69,9 @@ namespace Lion.AbpPro.Migrations
JobName = table . Column < string > ( type : "character varying(128)" , maxLength : 1 2 8 , nullable : false ) ,
JobArgs = table . Column < string > ( type : "character varying(1048576)" , maxLength : 1 0 4 8 5 7 6 , nullable : false ) ,
TryCount = table . Column < short > ( type : "smallint" , nullable : false , defaultValue : ( short ) 0 ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
NextTryTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
LastTryTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
NextTryTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
LastTryTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true ) ,
IsAbandoned = table . Column < bool > ( type : "boolean" , nullable : false , defaultValue : false ) ,
Priority = table . Column < byte > ( type : "smallint" , nullable : false , defaultValue : ( byte ) 1 5 ) ,
ExtraProperties = table . Column < string > ( type : "text" , nullable : false ) ,
@ -94,7 +94,7 @@ namespace Lion.AbpPro.Migrations
RegexDescription = table . Column < string > ( type : "character varying(128)" , maxLength : 1 2 8 , nullable : true ) ,
Description = table . Column < string > ( type : "character varying(256)" , maxLength : 2 5 6 , nullable : true ) ,
ValueType = table . Column < int > ( type : "integer" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
ExtraProperties = table . Column < string > ( type : "text" , nullable : false ) ,
ConcurrencyStamp = table . Column < string > ( type : "character varying(40)" , maxLength : 4 0 , nullable : false )
} ,
@ -181,13 +181,13 @@ namespace Lion.AbpPro.Migrations
EntityVersion = table . Column < int > ( type : "integer" , nullable : false ) ,
ExtraProperties = table . Column < string > ( type : "text" , nullable : false ) ,
ConcurrencyStamp = table . Column < string > ( type : "character varying(40)" , maxLength : 4 0 , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
CreatorId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true ) ,
LastModifierId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
IsDeleted = table . Column < bool > ( type : "boolean" , nullable : false , defaultValue : false ) ,
DeleterId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
DeletionTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true )
DeletionTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true )
} ,
constraints : table = >
{
@ -259,19 +259,42 @@ namespace Lion.AbpPro.Migrations
Description = table . Column < string > ( type : "character varying(1024)" , maxLength : 1 0 2 4 , nullable : false ) ,
ExtraProperties = table . Column < string > ( type : "text" , nullable : false ) ,
ConcurrencyStamp = table . Column < string > ( type : "character varying(40)" , maxLength : 4 0 , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
CreatorId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true ) ,
LastModifierId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
IsDeleted = table . Column < bool > ( type : "boolean" , nullable : false , defaultValue : false ) ,
DeleterId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
DeletionTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true )
DeletionTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true )
} ,
constraints : table = >
{
table . PrimaryKey ( "PK_AbpProDataDictionaries" , x = > x . Id ) ;
} ) ;
migrationBuilder . CreateTable (
name : "AbpProDemos" ,
columns : table = > new
{
Id = table . Column < Guid > ( type : "uuid" , nullable : false ) ,
TenantId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
Name = table . Column < string > ( type : "text" , nullable : true ) ,
Description = table . Column < string > ( type : "text" , nullable : true ) ,
ExtraProperties = table . Column < string > ( type : "text" , nullable : false ) ,
ConcurrencyStamp = table . Column < string > ( type : "character varying(40)" , maxLength : 4 0 , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
CreatorId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true ) ,
LastModifierId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
IsDeleted = table . Column < bool > ( type : "boolean" , nullable : false , defaultValue : false ) ,
DeleterId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
DeletionTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true )
} ,
constraints : table = >
{
table . PrimaryKey ( "PK_AbpProDemos" , x = > x . Id ) ;
} ) ;
migrationBuilder . CreateTable (
name : "AbpProFileObjects" ,
columns : table = > new
@ -283,13 +306,13 @@ namespace Lion.AbpPro.Migrations
ContentType = table . Column < string > ( type : "character varying(128)" , maxLength : 1 2 8 , nullable : false , comment : "文件名称" ) ,
ExtraProperties = table . Column < string > ( type : "text" , nullable : false ) ,
ConcurrencyStamp = table . Column < string > ( type : "character varying(40)" , maxLength : 4 0 , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
CreatorId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true ) ,
LastModifierId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
IsDeleted = table . Column < bool > ( type : "boolean" , nullable : false , defaultValue : false ) ,
DeleterId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
DeletionTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true )
DeletionTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true )
} ,
constraints : table = >
{
@ -310,13 +333,13 @@ namespace Lion.AbpPro.Migrations
IsDefault = table . Column < bool > ( type : "boolean" , nullable : false ) ,
ExtraProperties = table . Column < string > ( type : "text" , nullable : false ) ,
ConcurrencyStamp = table . Column < string > ( type : "character varying(40)" , maxLength : 4 0 , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
CreatorId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true ) ,
LastModifierId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
IsDeleted = table . Column < bool > ( type : "boolean" , nullable : false , defaultValue : false ) ,
DeleterId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
DeletionTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true )
DeletionTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true )
} ,
constraints : table = >
{
@ -335,13 +358,13 @@ namespace Lion.AbpPro.Migrations
Value = table . Column < string > ( type : "character varying(256)" , maxLength : 2 5 6 , nullable : false , comment : "值" ) ,
ExtraProperties = table . Column < string > ( type : "text" , nullable : false ) ,
ConcurrencyStamp = table . Column < string > ( type : "character varying(40)" , maxLength : 4 0 , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
CreatorId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true ) ,
LastModifierId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
IsDeleted = table . Column < bool > ( type : "boolean" , nullable : false , defaultValue : false ) ,
DeleterId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
DeletionTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true )
DeletionTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true )
} ,
constraints : table = >
{
@ -363,16 +386,16 @@ namespace Lion.AbpPro.Migrations
ReceiveUserId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
ReceiveUserName = table . Column < string > ( type : "character varying(128)" , maxLength : 1 2 8 , nullable : true ) ,
Read = table . Column < bool > ( type : "boolean" , nullable : false ) ,
ReadTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true ) ,
ReadTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true ) ,
ExtraProperties = table . Column < string > ( type : "text" , nullable : false ) ,
ConcurrencyStamp = table . Column < string > ( type : "character varying(40)" , maxLength : 4 0 , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
CreatorId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true ) ,
LastModifierId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
IsDeleted = table . Column < bool > ( type : "boolean" , nullable : false , defaultValue : false ) ,
DeleterId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
DeletionTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true )
DeletionTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true )
} ,
constraints : table = >
{
@ -389,16 +412,16 @@ namespace Lion.AbpPro.Migrations
ReceiveUserId = table . Column < Guid > ( type : "uuid" , nullable : false ) ,
ReceiveUserName = table . Column < string > ( type : "character varying(128)" , maxLength : 1 2 8 , nullable : true ) ,
Read = table . Column < bool > ( type : "boolean" , nullable : false ) ,
ReadTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
ReadTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
ExtraProperties = table . Column < string > ( type : "text" , nullable : false ) ,
ConcurrencyStamp = table . Column < string > ( type : "character varying(40)" , maxLength : 4 0 , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
CreatorId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true ) ,
LastModifierId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
IsDeleted = table . Column < bool > ( type : "boolean" , nullable : false , defaultValue : false ) ,
DeleterId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
DeletionTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true )
DeletionTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true )
} ,
constraints : table = >
{
@ -417,7 +440,7 @@ namespace Lion.AbpPro.Migrations
IsStatic = table . Column < bool > ( type : "boolean" , nullable : false ) ,
IsPublic = table . Column < bool > ( type : "boolean" , nullable : false ) ,
EntityVersion = table . Column < int > ( type : "integer" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
ExtraProperties = table . Column < string > ( type : "text" , nullable : false ) ,
ConcurrencyStamp = table . Column < string > ( type : "character varying(40)" , maxLength : 4 0 , nullable : false )
} ,
@ -442,7 +465,7 @@ namespace Lion.AbpPro.Migrations
CorrelationId = table . Column < string > ( type : "character varying(64)" , maxLength : 6 4 , nullable : true ) ,
ClientIpAddress = table . Column < string > ( type : "character varying(64)" , maxLength : 6 4 , nullable : true ) ,
BrowserInfo = table . Column < string > ( type : "character varying(512)" , maxLength : 5 1 2 , nullable : true ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
ExtraProperties = table . Column < string > ( type : "text" , nullable : false ) ,
ConcurrencyStamp = table . Column < string > ( type : "character varying(40)" , maxLength : 4 0 , nullable : false )
} ,
@ -463,8 +486,8 @@ namespace Lion.AbpPro.Migrations
UserId = table . Column < Guid > ( type : "uuid" , nullable : false ) ,
ClientId = table . Column < string > ( type : "character varying(64)" , maxLength : 6 4 , nullable : true ) ,
IpAddresses = table . Column < string > ( type : "character varying(2048)" , maxLength : 2 0 4 8 , nullable : true ) ,
SignedIn = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
LastAccessed = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true ) ,
SignedIn = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
LastAccessed = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true ) ,
ExtraProperties = table . Column < string > ( type : "text" , nullable : true )
} ,
constraints : table = >
@ -517,13 +540,13 @@ namespace Lion.AbpPro.Migrations
EntityVersion = table . Column < int > ( type : "integer" , nullable : false ) ,
ExtraProperties = table . Column < string > ( type : "text" , nullable : false ) ,
ConcurrencyStamp = table . Column < string > ( type : "character varying(40)" , maxLength : 4 0 , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
CreatorId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true ) ,
LastModifierId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
IsDeleted = table . Column < bool > ( type : "boolean" , nullable : false , defaultValue : false ) ,
DeleterId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
DeletionTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true )
DeletionTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true )
} ,
constraints : table = >
{
@ -538,8 +561,8 @@ namespace Lion.AbpPro.Migrations
TenantId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
SourceUserId = table . Column < Guid > ( type : "uuid" , nullable : false ) ,
TargetUserId = table . Column < Guid > ( type : "uuid" , nullable : false ) ,
StartTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
EndTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false )
StartTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
EndTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false )
} ,
constraints : table = >
{
@ -574,13 +597,13 @@ namespace Lion.AbpPro.Migrations
LastPasswordChangeTime = table . Column < DateTimeOffset > ( type : "timestamp with time zone" , nullable : true ) ,
ExtraProperties = table . Column < string > ( type : "text" , nullable : false ) ,
ConcurrencyStamp = table . Column < string > ( type : "character varying(40)" , maxLength : 4 0 , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
CreatorId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true ) ,
LastModifierId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
IsDeleted = table . Column < bool > ( type : "boolean" , nullable : false , defaultValue : false ) ,
DeleterId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
DeletionTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true )
DeletionTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true )
} ,
constraints : table = >
{
@ -597,7 +620,7 @@ namespace Lion.AbpPro.Migrations
ServiceName = table . Column < string > ( type : "character varying(256)" , maxLength : 2 5 6 , nullable : true ) ,
MethodName = table . Column < string > ( type : "character varying(128)" , maxLength : 1 2 8 , nullable : true ) ,
Parameters = table . Column < string > ( type : "character varying(2000)" , maxLength : 2 0 0 0 , nullable : true ) ,
ExecutionTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
ExecutionTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
ExecutionDuration = table . Column < int > ( type : "integer" , nullable : false ) ,
ExtraProperties = table . Column < string > ( type : "text" , nullable : true )
} ,
@ -619,7 +642,7 @@ namespace Lion.AbpPro.Migrations
Id = table . Column < Guid > ( type : "uuid" , nullable : false ) ,
AuditLogId = table . Column < Guid > ( type : "uuid" , nullable : false ) ,
TenantId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
ChangeTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
ChangeTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
ChangeType = table . Column < byte > ( type : "smallint" , nullable : false ) ,
EntityTenantId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
EntityId = table . Column < string > ( type : "character varying(128)" , maxLength : 1 2 8 , nullable : true ) ,
@ -648,9 +671,9 @@ namespace Lion.AbpPro.Migrations
DisplayText = table . Column < string > ( type : "character varying(64)" , maxLength : 6 4 , nullable : true ) ,
Description = table . Column < string > ( type : "character varying(1024)" , maxLength : 1 0 2 4 , nullable : true ) ,
IsEnabled = table . Column < bool > ( type : "boolean" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
CreatorId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : true ) ,
LastModificationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : true ) ,
LastModifierId = table . Column < Guid > ( type : "uuid" , nullable : true )
} ,
constraints : table = >
@ -671,7 +694,7 @@ namespace Lion.AbpPro.Migrations
RoleId = table . Column < Guid > ( type : "uuid" , nullable : false ) ,
OrganizationUnitId = table . Column < Guid > ( type : "uuid" , nullable : false ) ,
TenantId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
CreatorId = table . Column < Guid > ( type : "uuid" , nullable : true )
} ,
constraints : table = >
@ -780,7 +803,7 @@ namespace Lion.AbpPro.Migrations
UserId = table . Column < Guid > ( type : "uuid" , nullable : false ) ,
OrganizationUnitId = table . Column < Guid > ( type : "uuid" , nullable : false ) ,
TenantId = table . Column < Guid > ( type : "uuid" , nullable : true ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp with time zone" , nullable : false ) ,
CreationTime = table . Column < DateTime > ( type : "timestamp without time zone" , nullable : false ) ,
CreatorId = table . Column < Guid > ( type : "uuid" , nullable : true )
} ,
constraints : table = >
@ -1159,6 +1182,9 @@ namespace Lion.AbpPro.Migrations
migrationBuilder . DropTable (
name : "AbpProDataDictionaryDetails" ) ;
migrationBuilder . DropTable (
name : "AbpProDemos" ) ;
migrationBuilder . DropTable (
name : "AbpProFileObjects" ) ;