From 11ed0a83175fbe33e9323044e6bc0c3e515a3f95 Mon Sep 17 00:00:00 2001 From: Jordan Marr Date: Sat, 20 Apr 2024 21:57:53 -0400 Subject: [PATCH] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index d651559..ff38237 100644 --- a/README.md +++ b/README.md @@ -201,12 +201,16 @@ module dbo = ErrorProcedure: Option ErrorLine: Option } + let ErrorLog = table + type BuildVersion = { SystemInformationID: byte ``Database Version``: string VersionDate: System.DateTime ModifiedDate: System.DateTime } + let BuildVersion = table + module SalesLT = type Address = { City: string @@ -219,6 +223,8 @@ module SalesLT = AddressLine1: string AddressLine2: Option } + let Address = table
+ type Customer = { LastName: string PasswordHash: string @@ -235,6 +241,8 @@ module SalesLT = SalesPerson: Option EmailAddress: Option Phone: Option } + + let Customer = table // etc... ```