1
0
Fork 0
mirror of synced 2024-10-06 04:54:52 +13:00

Fixing export.

This commit is contained in:
mike12345567 2023-10-26 18:34:21 +01:00
parent d13cc80022
commit e12cef305a
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ version: "3.8"
services: services:
db: db:
container_name: postgres container_name: postgres
image: postgres:15 image: postgres:15-bullseye
restart: unless-stopped restart: unless-stopped
environment: environment:
POSTGRES_USER: root POSTGRES_USER: root

View file

@ -71,7 +71,7 @@ type DefaultUserValues = {
csrfToken: string csrfToken: string
} }
export interface TableToBuild extends Omit<Table, "sourceId" | "sourceType"> { interface TableToBuild extends Omit<Table, "sourceId" | "sourceType"> {
sourceId?: string sourceId?: string
sourceType?: TableSourceType sourceType?: TableSourceType
} }