@topogram/starter-hello-db 0.1.10 → 0.1.12
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@topogram/starter-hello-db",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "SQLite database lifecycle Topogram starter.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"private": false,
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"README.md"
|
|
18
18
|
],
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@topogram/generator-sqlite-db": "0.1.
|
|
20
|
+
"@topogram/generator-sqlite-db": "0.1.3"
|
|
21
21
|
},
|
|
22
22
|
"publishConfig": {
|
|
23
23
|
"registry": "https://registry.npmjs.org",
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
projection proj_db_sqlite {
|
|
2
2
|
name "Hello SQLite DB"
|
|
3
3
|
description "SQLite persistence realization for the hello DB starter"
|
|
4
|
-
|
|
4
|
+
type db_contract
|
|
5
5
|
|
|
6
6
|
realizes [entity_greeting]
|
|
7
7
|
outputs [db_contract, sql_schema]
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
tables {
|
|
10
10
|
entity_greeting table greetings
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
keys {
|
|
14
14
|
entity_greeting primary [id]
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
indexes {
|
|
18
18
|
entity_greeting index [created_at]
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
lifecycle {
|
|
22
22
|
entity_greeting timestamps created_at created_at updated_at created_at
|
|
23
23
|
}
|
|
24
24
|
|
package/topogram-template.json
CHANGED
package/topogram.project.json
CHANGED
|
@@ -7,16 +7,16 @@
|
|
|
7
7
|
}
|
|
8
8
|
},
|
|
9
9
|
"topology": {
|
|
10
|
-
"
|
|
10
|
+
"runtimes": [
|
|
11
11
|
{
|
|
12
12
|
"id": "app_sqlite",
|
|
13
|
-
"type": "database",
|
|
14
13
|
"projection": "proj_db_sqlite",
|
|
15
14
|
"generator": {
|
|
16
15
|
"id": "@topogram/generator-sqlite-db",
|
|
17
16
|
"version": "1",
|
|
18
17
|
"package": "@topogram/generator-sqlite-db"
|
|
19
|
-
}
|
|
18
|
+
},
|
|
19
|
+
"kind": "database"
|
|
20
20
|
}
|
|
21
21
|
]
|
|
22
22
|
}
|