schema-seed-adapter-mssql 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +12 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # schema-seed-adapter-mssql
2
2
 
3
- Part of the [schema-seed](https://github.com/AliNazar-111/schema-seed) project.
3
+ Mssql adapter for [schema-seed](https://www.npmjs.com/package/schema-seed).
4
4
 
5
- For full documentation and usage, please visit the [main repository](https://github.com/AliNazar-111/schema-seed).
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install schema-seed-adapter-mssql
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ This adapter is automatically loaded by the `schema-seed` CLI when a mssql connection string is used.
14
+
15
+ For more information, visit the [main schema-seed documentation](https://github.com/AliNazar-111/schema-seed).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "schema-seed-adapter-mssql",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "description": "MSSQL adapter for schema-seed",
6
6
  "author": "Ali Nazar",
@@ -39,7 +39,7 @@
39
39
  ],
40
40
  "dependencies": {
41
41
  "mssql": "^11.0.1",
42
- "schema-seed-core": "0.1.1"
42
+ "schema-seed-core": "0.1.2"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@types/mssql": "^9.1.5",