Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
dd5bbf0
8477: first s3 migration
AbelTaxCourt Jan 21, 2026
28fee16
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Jan 22, 2026
cd032cb
8477: update schema type
AbelTaxCourt Jan 26, 2026
20052db
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Jan 26, 2026
2e20231
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Jan 28, 2026
b794e89
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Jan 29, 2026
bd792f0
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Feb 2, 2026
81e1dc5
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
TomElliottFlexion Feb 3, 2026
226cffe
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Feb 5, 2026
5ed1d63
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Feb 6, 2026
2be211b
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Feb 9, 2026
0c2293e
Merge branch 'staging' of github.com:ustaxcourt/ef-cms into 8477-s3-f…
ChristieLaferriereTaxCourt Feb 9, 2026
b9cd09d
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Feb 10, 2026
2743ea6
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Feb 17, 2026
33ed903
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Feb 18, 2026
c7917a9
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Feb 20, 2026
a5392f8
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Feb 20, 2026
d1c0f83
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Feb 23, 2026
8e722d8
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Feb 26, 2026
d145bcd
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Feb 26, 2026
6ae36b8
Merge branch 'staging' of https://github.com/ustaxcourt/ef-cms into 8…
AbelTaxCourt Feb 27, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions shared/src/business/entities/DocketEntry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
public docketNumbers?: string;
public documentContentsId?: string;
public documentIdBeforeSignature?: string;
public documentStorageId?: string; // 8477TODO: make sure its not optional after migration
public documentTitle: string;
public documentType?: string;
public eventCode: string; // technically optional as draft docketEntry does not require it
Expand Down Expand Up @@ -197,7 +198,7 @@

// Keeping this constructor setup like this so we get the typescript safety, but the
// joi validation proxy invokes init on behalf of the constructor, so we keep these unused arguments.
constructor(

Check warning on line 201 in shared/src/business/entities/DocketEntry.ts

View workflow job for this annotation

GitHub Actions / Lint

Constructor has a complexity of 22. Maximum allowed is 20

Check warning on line 201 in shared/src/business/entities/DocketEntry.ts

View workflow job for this annotation

GitHub Actions / Lint

Constructor has a complexity of 22. Maximum allowed is 20
rawDocketEntry,
{
authorizedUser,
Expand Down
2 changes: 2 additions & 0 deletions web-api/src/persistence/postgres/docketEntries/mapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ export function toKyselyNewDocketEntry(
docketNumbers: docketEntry.docketNumbers ?? null,
documentContentsId: docketEntry.documentContentsId ?? null,
documentIdBeforeSignature: docketEntry.documentIdBeforeSignature ?? null,
documentStorageId:
docketEntry.documentStorageId ?? docketEntry.docketEntryId, // 8477TODO: temp, remove after migration
documentTitle: docketEntry.documentTitle,
documentType: docketEntry.documentType ?? null,
draftOrderState: docketEntry.draftOrderState
Expand Down
1 change: 1 addition & 0 deletions web-api/src/persistence/postgres/docketEntries/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export const docketEntryTableDefinition = {
docketNumbers: DEFAULT as string | null,
documentContentsId: DEFAULT as string | null,
documentIdBeforeSignature: DEFAULT as string | null,
documentStorageId: DEFAULT as string | null,
documentTitle: DEFAULT as string,
documentType: DEFAULT as string | null,
draftOrderState: DEFAULT as ColumnType<
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { Kysely } from 'kysely';

export async function up(db: Kysely<any>): Promise<void> {
await db.schema
.alterTable('dwDocketEntry')
.addColumn('documentStorageId', 'varchar')
.execute();
}

export async function down(db: Kysely<any>): Promise<void> {
await db.schema
.alterTable('dwDocketEntry')
.dropColumn('documentStorageId')
.execute();
}
Loading