We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae07848 commit 249c40eCopy full SHA for 249c40e
README.md
@@ -146,23 +146,11 @@ sof-mssql expects FHIR resources to be stored in a table with the following
146
structure:
147
148
```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
160
-) NOT NULL,
161
- [json] NVARCHAR
162
163
- MAX
164
165
- );
+CREATE TABLE [dbo].[fhir_resources] (
+ [id] NVARCHAR (64) NOT NULL PRIMARY KEY,
+ [resource_type] NVARCHAR (64) NOT NULL,
+ [json] NVARCHAR (MAX) NOT NULL,
+);
166
```
167
168
The generated queries use:
0 commit comments