retold-data-service 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.config/code-server/config.yaml +4 -0
- package/.config/configstore/update-notifier-npm-check-updates.json +4 -0
- package/.config/configstore/update-notifier-npm.json +4 -0
- package/.config/luxury-extras/.vscode/launch.json +46 -0
- package/.config/luxury-extras/Dockerfile +32 -0
- package/.config/luxury-extras/MySQL/Dockerfile +50 -0
- package/.config/luxury-extras/MySQL/MySQL-Laden-Entry.sh +17 -0
- package/.config/luxury-extras/MySQL/MySQL-Security.sql +5 -0
- package/.config/luxury-extras/model/ddl/BookStore.ddl +66 -0
- package/.config/luxury-extras/model/documentation/Dictionary.md +18 -0
- package/.config/luxury-extras/model/documentation/Model-Author.md +20 -0
- package/.config/luxury-extras/model/documentation/Model-Book.md +26 -0
- package/.config/luxury-extras/model/documentation/Model-BookAuthorJoin.md +14 -0
- package/.config/luxury-extras/model/documentation/Model-BookPrice.md +25 -0
- package/.config/luxury-extras/model/documentation/Model-Review.md +22 -0
- package/.config/luxury-extras/model/documentation/ModelChangeTracking.md +17 -0
- package/.config/luxury-extras/model/documentation/README.md +1 -0
- package/.config/luxury-extras/model/documentation/diagram/README.md +1 -0
- package/.config/luxury-extras/model/documentation/diagram/Stricture_Output.dot +13 -0
- package/.config/luxury-extras/model/documentation/diagram/Stricture_Output.png +0 -0
- package/.config/luxury-extras/model/json_schema_entities/BookStore-MeadowSchema-Author.json +220 -0
- package/.config/luxury-extras/model/json_schema_entities/BookStore-MeadowSchema-Book.json +268 -0
- package/.config/luxury-extras/model/json_schema_entities/BookStore-MeadowSchema-BookAuthorJoin.json +172 -0
- package/.config/luxury-extras/model/json_schema_entities/BookStore-MeadowSchema-BookPrice.json +260 -0
- package/.config/luxury-extras/model/json_schema_entities/BookStore-MeadowSchema-Review.json +236 -0
- package/.config/luxury-extras/model/json_schema_entities/README.md +1 -0
- package/.config/luxury-extras/model/json_schema_model/BookStore-Extended.json +915 -0
- package/.config/luxury-extras/model/json_schema_model/BookStore-PICT.json +1 -0
- package/.config/luxury-extras/model/json_schema_model/BookStore.json +280 -0
- package/.config/luxury-extras/model/json_schema_model/README.md +1 -0
- package/.config/luxury-extras/model/mysql_create/BookStore-CreateDatabase.mysql.sql +116 -0
- package/.config/luxury-extras/model/mysql_create/README.md +1 -0
- package/LICENSE +21 -0
- package/README.md +86 -0
- package/debug/Harness-Configuration.json +51 -0
- package/debug/Harness.js +3 -0
- package/debug/model/Build-Database.sh +22 -0
- package/debug/model/Model-Extended.json +915 -0
- package/debug/model/Model-PICT.json +1 -0
- package/debug/model/Model.json +280 -0
- package/debug/model/ddl/Model.ddl +66 -0
- package/debug/model/generated_documentation/Dictionary.md +18 -0
- package/debug/model/generated_documentation/Model-Author.md +20 -0
- package/debug/model/generated_documentation/Model-Book.md +26 -0
- package/debug/model/generated_documentation/Model-BookAuthorJoin.md +14 -0
- package/debug/model/generated_documentation/Model-BookPrice.md +25 -0
- package/debug/model/generated_documentation/Model-Review.md +22 -0
- package/debug/model/generated_documentation/ModelChangeTracking.md +17 -0
- package/debug/model/generated_documentation/diagrams/Stricture_Output.dot +13 -0
- package/debug/model/generated_documentation/diagrams/Stricture_Output.png +0 -0
- package/debug/model/generated_documentation/diagrams/full/Stricture_Output.dot +13 -0
- package/debug/model/generated_documentation/diagrams/full/Stricture_Output.png +0 -0
- package/debug/model/meadow/Model-MeadowSchema-Author.json +220 -0
- package/debug/model/meadow/Model-MeadowSchema-Book.json +268 -0
- package/debug/model/meadow/Model-MeadowSchema-BookAuthorJoin.json +172 -0
- package/debug/model/meadow/Model-MeadowSchema-BookPrice.json +260 -0
- package/debug/model/meadow/Model-MeadowSchema-Review.json +236 -0
- package/debug/model/mysql/Model-CreateDatabase.mysql.sql +116 -0
- package/package.json +43 -0
- package/source/Cumulation-Settings-Default.js +19 -0
- package/source/Cumulation.js +90 -0
- package/source/GraphGet.js +608 -0
- package/source/ProviderHelpers/Meadow-Provider-Helper-ALASQL.js +48 -0
- package/source/ProviderHelpers/Meadow-Provider-Helper-Base.js +46 -0
- package/source/ProviderHelpers/Meadow-Provider-Helper-MySQL.js +62 -0
- package/source/Retold-Data-Service.js +285 -0
- package/test/RetoldDataService_tests.js +73 -0
- package/test/basic_test_configurations/fable-config-load_model.json +45 -0
- package/test/model/ddl/BookStore.ddl +66 -0
- package/test/model/generated_diagram/README.md +1 -0
- package/test/model/generated_diagram/Stricture_Output.dot +13 -0
- package/test/model/generated_diagram/Stricture_Output.png +0 -0
- package/test/model/generated_documentation/Dictionary.md +18 -0
- package/test/model/generated_documentation/Model-Author.md +20 -0
- package/test/model/generated_documentation/Model-Book.md +26 -0
- package/test/model/generated_documentation/Model-BookAuthorJoin.md +14 -0
- package/test/model/generated_documentation/Model-BookPrice.md +25 -0
- package/test/model/generated_documentation/Model-Review.md +22 -0
- package/test/model/generated_documentation/ModelChangeTracking.md +17 -0
- package/test/model/generated_documentation/README.md +1 -0
- package/test/model/manual_scripts/DropTables.sql +5 -0
- package/test/model/manual_scripts/README.md +2 -0
- package/test/model/meadow_model/BookStore-Extended.json +915 -0
- package/test/model/meadow_model/BookStore-PICT.json +1 -0
- package/test/model/meadow_model/BookStore.json +280 -0
- package/test/model/meadow_model/README.md +1 -0
- package/test/model/meadow_schema/BookStore-MeadowSchema-Author.json +220 -0
- package/test/model/meadow_schema/BookStore-MeadowSchema-Book.json +268 -0
- package/test/model/meadow_schema/BookStore-MeadowSchema-BookAuthorJoin.json +172 -0
- package/test/model/meadow_schema/BookStore-MeadowSchema-BookPrice.json +260 -0
- package/test/model/meadow_schema/BookStore-MeadowSchema-Review.json +236 -0
- package/test/model/meadow_schema/README.md +1 -0
- package/test/model/sql_create/BookStore-CreateDatabase.mysql.sql +116 -0
- package/test/model/sql_create/README.md +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1,280 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Tables": {
|
|
3
|
+
"Book": {
|
|
4
|
+
"TableName": "Book",
|
|
5
|
+
"Domain": "Default",
|
|
6
|
+
"Columns": [
|
|
7
|
+
{
|
|
8
|
+
"Column": "IDBook",
|
|
9
|
+
"DataType": "ID"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"Column": "GUIDBook",
|
|
13
|
+
"DataType": "GUID"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"Column": "CreateDate",
|
|
17
|
+
"DataType": "DateTime"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"Column": "CreatingIDUser",
|
|
21
|
+
"DataType": "Numeric"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"Column": "UpdateDate",
|
|
25
|
+
"DataType": "DateTime"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"Column": "UpdatingIDUser",
|
|
29
|
+
"DataType": "Numeric"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"Column": "Deleted",
|
|
33
|
+
"DataType": "Boolean"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"Column": "DeleteDate",
|
|
37
|
+
"DataType": "DateTime"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"Column": "DeletingIDUser",
|
|
41
|
+
"DataType": "Numeric"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"Column": "Title",
|
|
45
|
+
"DataType": "String",
|
|
46
|
+
"Size": "200"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"Column": "Type",
|
|
50
|
+
"DataType": "String",
|
|
51
|
+
"Size": "32"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"Column": "Genre",
|
|
55
|
+
"DataType": "String",
|
|
56
|
+
"Size": "128"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"Column": "ISBN",
|
|
60
|
+
"DataType": "String",
|
|
61
|
+
"Size": "64"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"Column": "Language",
|
|
65
|
+
"DataType": "String",
|
|
66
|
+
"Size": "12"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"Column": "ImageURL",
|
|
70
|
+
"DataType": "String",
|
|
71
|
+
"Size": "254"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"Column": "PublicationYear",
|
|
75
|
+
"DataType": "Numeric"
|
|
76
|
+
}
|
|
77
|
+
],
|
|
78
|
+
"Description": ""
|
|
79
|
+
},
|
|
80
|
+
"BookAuthorJoin": {
|
|
81
|
+
"TableName": "BookAuthorJoin",
|
|
82
|
+
"Domain": "Default",
|
|
83
|
+
"Columns": [
|
|
84
|
+
{
|
|
85
|
+
"Column": "IDBookAuthorJoin",
|
|
86
|
+
"DataType": "ID"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"Column": "GUIDBookAuthorJoin",
|
|
90
|
+
"DataType": "GUID"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"Column": "IDBook",
|
|
94
|
+
"DataType": "Numeric",
|
|
95
|
+
"Join": "IDBook"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"Column": "IDAuthor",
|
|
99
|
+
"DataType": "Numeric",
|
|
100
|
+
"Join": "IDAuthor"
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"Description": ""
|
|
104
|
+
},
|
|
105
|
+
"Author": {
|
|
106
|
+
"TableName": "Author",
|
|
107
|
+
"Domain": "Default",
|
|
108
|
+
"Columns": [
|
|
109
|
+
{
|
|
110
|
+
"Column": "IDAuthor",
|
|
111
|
+
"DataType": "ID"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"Column": "GUIDAuthor",
|
|
115
|
+
"DataType": "GUID"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"Column": "CreateDate",
|
|
119
|
+
"DataType": "DateTime"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"Column": "CreatingIDUser",
|
|
123
|
+
"DataType": "Numeric"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"Column": "UpdateDate",
|
|
127
|
+
"DataType": "DateTime"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"Column": "UpdatingIDUser",
|
|
131
|
+
"DataType": "Numeric"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"Column": "Deleted",
|
|
135
|
+
"DataType": "Boolean"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"Column": "DeleteDate",
|
|
139
|
+
"DataType": "DateTime"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"Column": "DeletingIDUser",
|
|
143
|
+
"DataType": "Numeric"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"Column": "Name",
|
|
147
|
+
"DataType": "String",
|
|
148
|
+
"Size": "200"
|
|
149
|
+
}
|
|
150
|
+
],
|
|
151
|
+
"Description": ""
|
|
152
|
+
},
|
|
153
|
+
"BookPrice": {
|
|
154
|
+
"TableName": "BookPrice",
|
|
155
|
+
"Domain": "Default",
|
|
156
|
+
"Columns": [
|
|
157
|
+
{
|
|
158
|
+
"Column": "IDBookPrice",
|
|
159
|
+
"DataType": "ID"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"Column": "GUIDBookPrice",
|
|
163
|
+
"DataType": "GUID"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"Column": "CreateDate",
|
|
167
|
+
"DataType": "DateTime"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"Column": "CreatingIDUser",
|
|
171
|
+
"DataType": "Numeric"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"Column": "UpdateDate",
|
|
175
|
+
"DataType": "DateTime"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"Column": "UpdatingIDUser",
|
|
179
|
+
"DataType": "Numeric"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"Column": "Deleted",
|
|
183
|
+
"DataType": "Boolean"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"Column": "DeleteDate",
|
|
187
|
+
"DataType": "DateTime"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"Column": "DeletingIDUser",
|
|
191
|
+
"DataType": "Numeric"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"Column": "Price",
|
|
195
|
+
"DataType": "Decimal",
|
|
196
|
+
"Size": "8,2"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"Column": "StartDate",
|
|
200
|
+
"DataType": "DateTime"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"Column": "EndDate",
|
|
204
|
+
"DataType": "DateTime"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"Column": "Discountable",
|
|
208
|
+
"DataType": "Boolean"
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"Column": "CouponCode",
|
|
212
|
+
"DataType": "String",
|
|
213
|
+
"Size": "16"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"Column": "IDBook",
|
|
217
|
+
"DataType": "Numeric",
|
|
218
|
+
"Join": "IDBook"
|
|
219
|
+
}
|
|
220
|
+
],
|
|
221
|
+
"Description": ""
|
|
222
|
+
},
|
|
223
|
+
"Review": {
|
|
224
|
+
"TableName": "Review",
|
|
225
|
+
"Domain": "Default",
|
|
226
|
+
"Columns": [
|
|
227
|
+
{
|
|
228
|
+
"Column": "IDReviews",
|
|
229
|
+
"DataType": "ID"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"Column": "GUIDReviews",
|
|
233
|
+
"DataType": "GUID"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"Column": "CreateDate",
|
|
237
|
+
"DataType": "DateTime"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"Column": "CreatingIDUser",
|
|
241
|
+
"DataType": "Numeric"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"Column": "UpdateDate",
|
|
245
|
+
"DataType": "DateTime"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"Column": "UpdatingIDUser",
|
|
249
|
+
"DataType": "Numeric"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"Column": "Deleted",
|
|
253
|
+
"DataType": "Boolean"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"Column": "DeleteDate",
|
|
257
|
+
"DataType": "DateTime"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"Column": "DeletingIDUser",
|
|
261
|
+
"DataType": "Numeric"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"Column": "Text",
|
|
265
|
+
"DataType": "Text"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"Column": "Rating",
|
|
269
|
+
"DataType": "Numeric"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"Column": "IDBook",
|
|
273
|
+
"DataType": "Numeric",
|
|
274
|
+
"Join": "IDBook"
|
|
275
|
+
}
|
|
276
|
+
],
|
|
277
|
+
"Description": ""
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
!Book
|
|
2
|
+
@IDBook
|
|
3
|
+
%GUIDBook
|
|
4
|
+
&CreateDate
|
|
5
|
+
#CreatingIDUser
|
|
6
|
+
&UpdateDate
|
|
7
|
+
#UpdatingIDUser
|
|
8
|
+
^Deleted
|
|
9
|
+
&DeleteDate
|
|
10
|
+
#DeletingIDUser
|
|
11
|
+
$Title 200
|
|
12
|
+
$Type 32
|
|
13
|
+
$Genre 128
|
|
14
|
+
$ISBN 64
|
|
15
|
+
$Language 12
|
|
16
|
+
$ImageURL 254
|
|
17
|
+
#PublicationYear
|
|
18
|
+
|
|
19
|
+
!BookAuthorJoin
|
|
20
|
+
@IDBookAuthorJoin
|
|
21
|
+
%GUIDBookAuthorJoin
|
|
22
|
+
#IDBook -> IDBook
|
|
23
|
+
#IDAuthor -> IDAuthor
|
|
24
|
+
|
|
25
|
+
!Author
|
|
26
|
+
@IDAuthor
|
|
27
|
+
%GUIDAuthor
|
|
28
|
+
&CreateDate
|
|
29
|
+
#CreatingIDUser
|
|
30
|
+
&UpdateDate
|
|
31
|
+
#UpdatingIDUser
|
|
32
|
+
^Deleted
|
|
33
|
+
&DeleteDate
|
|
34
|
+
#DeletingIDUser
|
|
35
|
+
$Name 200
|
|
36
|
+
|
|
37
|
+
!BookPrice
|
|
38
|
+
@IDBookPrice
|
|
39
|
+
%GUIDBookPrice
|
|
40
|
+
&CreateDate
|
|
41
|
+
#CreatingIDUser
|
|
42
|
+
&UpdateDate
|
|
43
|
+
#UpdatingIDUser
|
|
44
|
+
^Deleted
|
|
45
|
+
&DeleteDate
|
|
46
|
+
#DeletingIDUser
|
|
47
|
+
.Price 8,2
|
|
48
|
+
&StartDate
|
|
49
|
+
&EndDate
|
|
50
|
+
^Discountable
|
|
51
|
+
$CouponCode 16
|
|
52
|
+
#IDBook -> IDBook
|
|
53
|
+
|
|
54
|
+
!Review
|
|
55
|
+
@IDReviews
|
|
56
|
+
%GUIDReviews
|
|
57
|
+
&CreateDate
|
|
58
|
+
#CreatingIDUser
|
|
59
|
+
&UpdateDate
|
|
60
|
+
#UpdatingIDUser
|
|
61
|
+
^Deleted
|
|
62
|
+
&DeleteDate
|
|
63
|
+
#DeletingIDUser
|
|
64
|
+
*Text
|
|
65
|
+
#Rating
|
|
66
|
+
#IDBook -> IDBook
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
##### {DocumentationIndex|Home} > {Model/DataModel|Data Model} > {Model/Dictionary/Dictionary|Data Dictionary}
|
|
2
|
+
|
|
3
|
+
Data Dictionary
|
|
4
|
+
=========================
|
|
5
|
+
|
|
6
|
+
Each entry below describes a single table in the database.
|
|
7
|
+
|
|
8
|
+
Table | Column Count
|
|
9
|
+
----- | -----------:
|
|
10
|
+
{Model/Dictionary/Model-Book|Book} | 16
|
|
11
|
+
{Model/Dictionary/Model-BookAuthorJoin|BookAuthorJoin} | 4
|
|
12
|
+
{Model/Dictionary/Model-Author|Author} | 10
|
|
13
|
+
{Model/Dictionary/Model-BookPrice|BookPrice} | 15
|
|
14
|
+
{Model/Dictionary/Model-Review|Review} | 12
|
|
15
|
+
|
|
16
|
+
- - -
|
|
17
|
+
|
|
18
|
+
Generated on 2022-04-12 at 05:42
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
##### {DocumentationIndex|Home} > {Model/DataModel|Data Model} > {Model/Dictionary/Dictionary|Data Dictionary} > {Model/Dictionary/Model-Author|Author Table}
|
|
2
|
+
|
|
3
|
+
Author
|
|
4
|
+
===
|
|
5
|
+
|
|
6
|
+
Column Name | Size | Data Type | Join
|
|
7
|
+
----------- | ---: | --------- | ----
|
|
8
|
+
IDAuthor | | ID |
|
|
9
|
+
GUIDAuthor | | GUID |
|
|
10
|
+
CreateDate | | DateTime |
|
|
11
|
+
CreatingIDUser | | Numeric |
|
|
12
|
+
UpdateDate | | DateTime |
|
|
13
|
+
UpdatingIDUser | | Numeric |
|
|
14
|
+
Deleted | | Boolean |
|
|
15
|
+
DeleteDate | | DateTime |
|
|
16
|
+
DeletingIDUser | | Numeric |
|
|
17
|
+
Name | 200 | String |
|
|
18
|
+
- - -
|
|
19
|
+
|
|
20
|
+
Generated on 2022-04-12 at 05:42
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
##### {DocumentationIndex|Home} > {Model/DataModel|Data Model} > {Model/Dictionary/Dictionary|Data Dictionary} > {Model/Dictionary/Model-Book|Book Table}
|
|
2
|
+
|
|
3
|
+
Book
|
|
4
|
+
===
|
|
5
|
+
|
|
6
|
+
Column Name | Size | Data Type | Join
|
|
7
|
+
----------- | ---: | --------- | ----
|
|
8
|
+
IDBook | | ID |
|
|
9
|
+
GUIDBook | | GUID |
|
|
10
|
+
CreateDate | | DateTime |
|
|
11
|
+
CreatingIDUser | | Numeric |
|
|
12
|
+
UpdateDate | | DateTime |
|
|
13
|
+
UpdatingIDUser | | Numeric |
|
|
14
|
+
Deleted | | Boolean |
|
|
15
|
+
DeleteDate | | DateTime |
|
|
16
|
+
DeletingIDUser | | Numeric |
|
|
17
|
+
Title | 200 | String |
|
|
18
|
+
Type | 32 | String |
|
|
19
|
+
Genre | 128 | String |
|
|
20
|
+
ISBN | 64 | String |
|
|
21
|
+
Language | 12 | String |
|
|
22
|
+
ImageURL | 254 | String |
|
|
23
|
+
PublicationYear | | Numeric |
|
|
24
|
+
- - -
|
|
25
|
+
|
|
26
|
+
Generated on 2022-04-12 at 05:42
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
##### {DocumentationIndex|Home} > {Model/DataModel|Data Model} > {Model/Dictionary/Dictionary|Data Dictionary} > {Model/Dictionary/Model-BookAuthorJoin|BookAuthorJoin Table}
|
|
2
|
+
|
|
3
|
+
BookAuthorJoin
|
|
4
|
+
===
|
|
5
|
+
|
|
6
|
+
Column Name | Size | Data Type | Join
|
|
7
|
+
----------- | ---: | --------- | ----
|
|
8
|
+
IDBookAuthorJoin | | ID |
|
|
9
|
+
GUIDBookAuthorJoin | | GUID |
|
|
10
|
+
IDBook | | Numeric | Book.IDBook
|
|
11
|
+
IDAuthor | | Numeric | Author.IDAuthor
|
|
12
|
+
- - -
|
|
13
|
+
|
|
14
|
+
Generated on 2022-04-12 at 05:42
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
##### {DocumentationIndex|Home} > {Model/DataModel|Data Model} > {Model/Dictionary/Dictionary|Data Dictionary} > {Model/Dictionary/Model-BookPrice|BookPrice Table}
|
|
2
|
+
|
|
3
|
+
BookPrice
|
|
4
|
+
===
|
|
5
|
+
|
|
6
|
+
Column Name | Size | Data Type | Join
|
|
7
|
+
----------- | ---: | --------- | ----
|
|
8
|
+
IDBookPrice | | ID |
|
|
9
|
+
GUIDBookPrice | | GUID |
|
|
10
|
+
CreateDate | | DateTime |
|
|
11
|
+
CreatingIDUser | | Numeric |
|
|
12
|
+
UpdateDate | | DateTime |
|
|
13
|
+
UpdatingIDUser | | Numeric |
|
|
14
|
+
Deleted | | Boolean |
|
|
15
|
+
DeleteDate | | DateTime |
|
|
16
|
+
DeletingIDUser | | Numeric |
|
|
17
|
+
Price | 8,2 | Decimal |
|
|
18
|
+
StartDate | | DateTime |
|
|
19
|
+
EndDate | | DateTime |
|
|
20
|
+
Discountable | | Boolean |
|
|
21
|
+
CouponCode | 16 | String |
|
|
22
|
+
IDBook | | Numeric | Book.IDBook
|
|
23
|
+
- - -
|
|
24
|
+
|
|
25
|
+
Generated on 2022-04-12 at 05:42
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
##### {DocumentationIndex|Home} > {Model/DataModel|Data Model} > {Model/Dictionary/Dictionary|Data Dictionary} > {Model/Dictionary/Model-Review|Review Table}
|
|
2
|
+
|
|
3
|
+
Review
|
|
4
|
+
===
|
|
5
|
+
|
|
6
|
+
Column Name | Size | Data Type | Join
|
|
7
|
+
----------- | ---: | --------- | ----
|
|
8
|
+
IDReviews | | ID |
|
|
9
|
+
GUIDReviews | | GUID |
|
|
10
|
+
CreateDate | | DateTime |
|
|
11
|
+
CreatingIDUser | | Numeric |
|
|
12
|
+
UpdateDate | | DateTime |
|
|
13
|
+
UpdatingIDUser | | Numeric |
|
|
14
|
+
Deleted | | Boolean |
|
|
15
|
+
DeleteDate | | DateTime |
|
|
16
|
+
DeletingIDUser | | Numeric |
|
|
17
|
+
Text | | Text |
|
|
18
|
+
Rating | | Numeric |
|
|
19
|
+
IDBook | | Numeric | Book.IDBook
|
|
20
|
+
- - -
|
|
21
|
+
|
|
22
|
+
Generated on 2022-04-12 at 05:42
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
##### {DocumentationIndex|Home} > {Model/DataModel|Data Model} > {Model/Dictionary/ModelChangeTracking|Table Change Tracking}
|
|
2
|
+
|
|
3
|
+
Table Change Tracking
|
|
4
|
+
=====================
|
|
5
|
+
|
|
6
|
+
The following table describes which tables have implicit create, update and delete change tracking (provided by the meadow endpoints API architecture). This does not include any kind of media archival or record longitudinal backups; just timestamps and user stamps for the last action of each type.
|
|
7
|
+
|
|
8
|
+
Table | Create | Update | Delete
|
|
9
|
+
----- | :----: | :----: | :----:
|
|
10
|
+
Book | X | X | X
|
|
11
|
+
BookAuthorJoin | | |
|
|
12
|
+
Author | X | X | X
|
|
13
|
+
BookPrice | X | X | X
|
|
14
|
+
Review | X | X | X
|
|
15
|
+
- - -
|
|
16
|
+
|
|
17
|
+
Generated on 2022-04-12 at 05:42
|