Merged PR 515: Revert "Merge branch 'develop' into main"

Revert "Merge branch 'develop' into main"

Reverted commit `815082d5`.
This commit is contained in:
oura.a 2023-10-23 06:54:00 +00:00
parent c844837aec
commit 81d966ad1f
7 changed files with 22 additions and 25 deletions

View File

@ -76,13 +76,10 @@ jobs:
ADB2C_CLIENT_SECRET: $(adb2c-client-secret)
MAIL_FROM: xxxxxx
APP_DOMAIN: xxxxxxxxx
EMAIL_CONFIRM_LIFETIME: 0
TENANT_NAME: xxxxxxxxxxxx
SIGNIN_FLOW_NAME: xxxxxxxxxxxx
STORAGE_TOKEN_EXPIRE_TIME: 0
REFRESH_TOKEN_LIFETIME_WEB: 0
REFRESH_TOKEN_LIFETIME_DEFAULT: 0
ACCESS_TOKEN_LIFETIME_WEB: 0
EMAIL_CONFIRM_LIFETIME : 0
TENANT_NAME : xxxxxxxxxxxx
SIGNIN_FLOW_NAME : xxxxxxxxxxxx
STORAGE_TOKEN_EXPIRE_TIME : 0
- task: Docker@0
displayName: build
inputs:

View File

@ -13,7 +13,7 @@ export class Account {
@PrimaryGeneratedColumn()
id: number;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
parent_account_id: number | null;
@Column()
@ -34,13 +34,13 @@ export class Account {
@Column({ default: false })
verified: boolean;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
primary_admin_user_id: number | null;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
secondary_admin_user_id: number | null;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
active_worktype_id: number | null;
@Column({ nullable: true, type: 'datetime' })

View File

@ -18,10 +18,10 @@ export class CheckoutPermission {
@Column({})
task_id: number;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
user_id: number | null;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
user_group_id: number | null;
@OneToOne(() => User, (user) => user.id)

View File

@ -79,16 +79,16 @@ export class License {
@Column()
status: string;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
allocated_user_id: number | null;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
order_id: number | null;
@Column({ nullable: true, type: 'datetime' })
deleted_at: Date | null;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
delete_order_id: number | null;
@Column({ nullable: true, type: 'datetime' })
@ -244,16 +244,16 @@ export class LicenseArchive {
@Column()
status: string;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
allocated_user_id: number | null;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
order_id: number | null;
@Column({ nullable: true, type: 'datetime' })
deleted_at: Date | null;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
delete_order_id: number | null;
@Column({ nullable: true, type: 'datetime' })

View File

@ -26,11 +26,11 @@ export class Task {
audio_file_id: number;
@Column()
status: string;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
typist_user_id: number | null;
@Column()
priority: string;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
template_file_id: number | null;
@Column({ nullable: true, type: 'datetime' })
started_at: Date | null;

View File

@ -24,10 +24,10 @@ export class Workflow {
@Column()
author_id: number;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
worktype_id: number | null;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
template_id: number | null;
@Column({ nullable: true, type: 'datetime' })

View File

@ -19,10 +19,10 @@ export class WorkflowTypist {
@Column()
workflow_id: number;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
typist_id: number | null;
@Column({ nullable: true, type: 'int' })
@Column({ nullable: true, type: 'unsigned big int' })
typist_group_id: number | null;
@Column({ nullable: true, type: 'datetime' })