Skip to content

Commit 249c40e

Browse files
committed
Fix formatting of SQL in README
1 parent ae07848 commit 249c40e

File tree

1 file changed

+5
-17
lines changed

1 file changed

+5
-17
lines changed

README.md

Lines changed: 5 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -146,23 +146,11 @@ sof-mssql expects FHIR resources to be stored in a table with the following
146146
structure:
147147

148148
```sql
149-
CREATE TABLE [dbo].[fhir_resources]
150-
(
151-
[
152-
id]
153-
NVARCHAR
154-
(
155-
64
156-
) NOT NULL PRIMARY KEY,
157-
[resource_type] NVARCHAR
158-
(
159-
64
160-
) NOT NULL,
161-
[json] NVARCHAR
162-
(
163-
MAX
164-
) NOT NULL,
165-
);
149+
CREATE TABLE [dbo].[fhir_resources] (
150+
[id] NVARCHAR (64) NOT NULL PRIMARY KEY,
151+
[resource_type] NVARCHAR (64) NOT NULL,
152+
[json] NVARCHAR (MAX) NOT NULL,
153+
);
166154
```
167155

168156
The generated queries use:

0 commit comments

Comments
 (0)