schema-seed-adapter-mysql 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.
- package/README.md +12 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# schema-seed-adapter-mysql
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Mysql adapter for [schema-seed](https://www.npmjs.com/package/schema-seed).
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install schema-seed-adapter-mysql
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
This adapter is automatically loaded by the `schema-seed` CLI when a mysql 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-mysql",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "MySQL adapter for schema-seed",
|
|
6
6
|
"author": "Ali Nazar",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"mysql2": "^3.11.3",
|
|
42
|
-
"schema-seed-core": "0.1.
|
|
42
|
+
"schema-seed-core": "0.1.2"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"tsup": "^8.3.5",
|