Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lolopinto committed Feb 24, 2024
1 parent 2645501 commit f91a6b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/schema/schema_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func TestForeignKey(t *testing.T) {
accountID: UUIDType({
foreignKey: {
schema: 'Account',
column: 'ID',
column: 'id',
}
}),
},
Expand Down
2 changes: 1 addition & 1 deletion ts/src/schema/postgres_schema_live.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const UserWithTimezoneSchema = getBuilderSchemaTZFromFields(

class UserWithTimestampNoFormatSchema implements Schema {
fields: FieldMap = {
ID: UUIDType({
id: UUIDType({
primaryKey: true,
defaultValueOnCreate: () => {
return uuidv4();
Expand Down

0 comments on commit f91a6b6

Please sign in to comment.