Extend tenant maintenance lock for imports
All checks were successful
Build and Push Docker Images / build-backend (push) Successful in 27s
Build and Push Docker Images / build-frontend (push) Successful in 1m11s
Build and Push Docker Images / build-website (push) Successful in 18s
Build and Push Docker Images / build-docs (push) Successful in 16s
All checks were successful
Build and Push Docker Images / build-backend (push) Successful in 27s
Build and Push Docker Images / build-frontend (push) Successful in 1m11s
Build and Push Docker Images / build-website (push) Successful in 18s
Build and Push Docker Images / build-docs (push) Successful in 16s
This commit is contained in:
@@ -9,6 +9,7 @@ import {
|
||||
|
||||
import { tenants } from "./tenants"
|
||||
import { authUsers } from "./auth_users"
|
||||
import { lockedTenantEnum } from "./enums"
|
||||
|
||||
export const tenantExportJobs = pgTable("tenant_export_jobs", {
|
||||
id: uuid("id").primaryKey().defaultRandom(),
|
||||
@@ -26,6 +27,8 @@ export const tenantExportJobs = pgTable("tenant_export_jobs", {
|
||||
|
||||
createdBy: uuid("created_by").references(() => authUsers.id),
|
||||
|
||||
operation: text("operation").notNull().default("export"),
|
||||
previousTenantLocked: lockedTenantEnum("previous_tenant_locked"),
|
||||
status: text("status").notNull().default("queued"),
|
||||
filename: text("filename").notNull(),
|
||||
storagePath: text("storage_path"),
|
||||
|
||||
Reference in New Issue
Block a user