Skip to content

Commit 23b9e3d

Browse files
authored
Correct column nullability in 10.0 what's new page (#5250)
See #5247
1 parent d424902 commit 23b9e3d

File tree

1 file changed

+1
-1
lines changed
  • entity-framework/core/what-is-new/ef-core-10.0

1 file changed

+1
-1
lines changed

entity-framework/core/what-is-new/ef-core-10.0/whatsnew.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ CREATE TABLE [Customers] (
304304
[Id] int NOT NULL IDENTITY,
305305
[Name] nvarchar(max) NOT NULL,
306306
[ShippingAddress] json NOT NULL,
307-
[BillingAddress] json NOT NULL,
307+
[BillingAddress] json NULL,
308308
CONSTRAINT [PK_Customers] PRIMARY KEY ([Id])
309309
);
310310
```

0 commit comments

Comments
 (0)