db-model-router 1.0.18 → 1.0.19
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
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*
|
|
6
6
|
* Generates CREATE TABLE migration files for all SaaS tables with proper
|
|
7
7
|
* column types, foreign key constraints, and unique constraints per adapter.
|
|
8
|
-
* Supports SQL adapters (postgres, mysql, sqlite3, mssql, oracle, cockroachdb)
|
|
8
|
+
* Supports SQL adapters (postgres, mysql, mariadb, sqlite3, mssql, oracle, cockroachdb)
|
|
9
9
|
* and NoSQL adapters (mongodb, dynamodb, redis).
|
|
10
10
|
*/
|
|
11
11
|
|
|
@@ -17,6 +17,7 @@ const { mapColumnType } = require("../generate-migration");
|
|
|
17
17
|
|
|
18
18
|
const SQL_ADAPTERS = [
|
|
19
19
|
"mysql",
|
|
20
|
+
"mariadb",
|
|
20
21
|
"postgres",
|
|
21
22
|
"sqlite3",
|
|
22
23
|
"mssql",
|