Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanMarr authored Apr 21, 2024
1 parent 9891241 commit 11ed0a8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,12 +201,16 @@ module dbo =
ErrorProcedure: Option<string>
ErrorLine: Option<int> }
let ErrorLog = table<ErrorLog>
type BuildVersion =
{ SystemInformationID: byte
``Database Version``: string
VersionDate: System.DateTime
ModifiedDate: System.DateTime }
let BuildVersion = table<BuildVersion>
module SalesLT =
type Address =
{ City: string
Expand All @@ -219,6 +223,8 @@ module SalesLT =
AddressLine1: string
AddressLine2: Option<string> }
let Address = table<Address>
type Customer =
{ LastName: string
PasswordHash: string
Expand All @@ -235,6 +241,8 @@ module SalesLT =
SalesPerson: Option<string>
EmailAddress: Option<string>
Phone: Option<string> }
let Customer = table<Customer>
// etc...
```
Expand Down

0 comments on commit 11ed0a8

Please sign in to comment.