Skip to content

Commit

Permalink
Fix failed test
Browse files Browse the repository at this point in the history
  • Loading branch information
huyphung1602 committed Jan 8, 2025
1 parent d6361cb commit 938e07c
Showing 1 changed file with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,19 @@ Table "dbo"."StringTypes" {
"NTextField" ntext [default: `N'N/A'`]
}

Table "dbo"."NumberTypesNoDefault" {
"ID" int(10) [pk, not null, increment]
"TINYINTCol" tinyint(3)
"SMALLINTCol" smallint(5)
"INTCol" int(10)
"BIGINTCol" bigint(19)
"DECIMALCol" decimal(10,2)
"NUMERICCol" numeric(10,2)
"FLOATCol" float(53)
"REALCol" real(24)
"BITCol" bit
}

Table "dbo"."NumberTypes" {
"ID" int(10) [pk, not null, increment]
"TINYINTCol" tinyint(3) [default: 0]
Expand All @@ -132,19 +145,6 @@ Table "dbo"."DatetimeTypes" {
"DATETIMEOFFSETCol" datetimeoffset [default: `sysdatetimeoffset()`]
}

Table "dbo"."NumberTypesNoDefault" {
"ID" int(10) [pk, not null, increment]
"TINYINTCol" tinyint(3)
"SMALLINTCol" smallint(5)
"INTCol" int(10)
"BIGINTCol" bigint(19)
"DECIMALCol" decimal(10,2)
"NUMERICCol" numeric(10,2)
"FLOATCol" float(53)
"REALCol" real(24)
"BITCol" bit
}

Table "dbo"."gender_reference" {
"value" nvarchar(10) [pk, not null]
}
Expand Down

0 comments on commit 938e07c

Please sign in to comment.